Phone.cs
Description du code
Phone.cs est un fichier du projet BiblioBrol.Ce fichier est situé dans /var/www/bin/sniplets/bibliobrol/src/.
Projet BiblioBrol :
Gestion de media en CSharp.
Pour plus d'infos, vous pouvez consulter la brève analyse.
Code source ou contenu du fichier
Code c# (Phone.cs) (155 lignes)
using System; using System.Collections.Generic; using System.Text; namespace be.gaudry.bibliobrol.model { [Serializable] public class Phone : ICloneable { #region constructor and declarations public enum TYPE { _, bureau, domicile, gsm } private int id; private String number; private TYPE type; public Phone() { reset(); } public Phone(String number) : this() { this.number = number; } public Phone(int id, String number) : this(number) { this.id = id; } public Phone(int id, String number, TYPE type) : this(id, number) { this.type = type; } #endregion #region overrided methods public override String ToString() { /*if(id==-1) return "Nouveau numéro";*/ return number + " (" + getTypeLocalName(type) + ")"; } public override bool Equals(object obj) { Phone phone = obj as Phone; if (phone == null) return false; if (phone.Id != id) return false; return phone.Number.Equals(number) && phone.Type.Equals(type); } public override int GetHashCode() { return (ToString()+id).GetHashCode(); } #endregion #region public methods /// <summary> /// Used to set default values for all fields /// </summary> public void reset() { id = -1; number = ""; type = TYPE._; } /// <summary> /// Get the local name of a phone type enum item /// </summary> /// <param name="t">Phone type enum item</param> /// <returns>Local name of param</returns> public static String getTypeLocalName(TYPE t) { switch (t) { case TYPE.gsm: return "GSM";//break; case TYPE.domicile: return "Maison";//break; case TYPE.bureau: return "Bureau";//break; default: return "Sans type"; } } /// <summary> /// Get the phone type enum item from a local name /// </summary> /// <param name="t">Local name of type</param> /// <returns>Phone type enum item</returns> public static TYPE getTypeFromLocalName(String t) { switch (t) { case "GSM": return TYPE.gsm;//break; case "Maison": return TYPE.domicile;//break; case "Bureau": return TYPE.bureau;//break; default: return TYPE._; } } /// <summary> /// Get the local name of a phone type enum item name /// </summary> /// <param name="typeName">(String) Phone type enum item name</param> /// <returns>Local name of param</returns> public static String getTypeLocalName(String typeName) { TYPE t; try { } catch(Exception) { t = TYPE._; } return getTypeLocalName(t); } #endregion #region properties public int Id { get { return this.id; } set { this.id = value; } } public String Number { get { return this.number; } set { //todo : implement validation rules this.number = value; } } /// <summary> /// Just use to display /// </summary> public String NumberAndType { //no setter!!! get { return ToString(); } } public TYPE Type { get { return this.type; } set { this.type = value; } } #endregion #region ICloneable Members public object Clone() { Phone p = (Phone)MemberwiseClone(); return p; } #endregion } }
Structure et Fichiers du projet
Afficher/masquer...Icône | Nom | Taille | Modification |
Icône | Nom | Taille | Modification |
| _ | Répertoire parent | 0 octets | 1731729966 16/11/2024 05:06:06 |
| _ | identity | 0 octets | 1541007175 31/10/2018 18:32:55 |
| _ | eid | 0 octets | 1541007175 31/10/2018 18:32:55 |
| _ | LightObjects | 0 octets | 1541007175 31/10/2018 18:32:55 |
| _ | comparators | 0 octets | 1541007174 31/10/2018 18:32:54 |
| _ | aws | 0 octets | 1541007173 31/10/2018 18:32:53 |
| _ | enums | 0 octets | 1541007175 31/10/2018 18:32:55 |
| _ | dao | 0 octets | 1541007174 31/10/2018 18:32:54 |
Utilisation de l'explorateur de code
- Navigation :
- Un clic sur une icône de répertoire ouvre ce répertoire pour en afficher les fichiers.
- Lorsque le répertoire en cours ne contient pas de sous-répertoires il est possible de remonter vers le répertoire parent.
- La structure de répertoires en treetable (tableau en forme d'arborescence) n'est plus possibledans cette version.
- Un clic sur une icône de fichier ouvre ce fichier pour en afficher le code avec la coloration syntaxique adaptée en fonction du langage principal utilisé dans le fichier.
- Affichage :
- Il est possible de trier les répertoires ou les fichiers selon certains critères (nom, taille, date).
- Actions :
- Les actions possible sur les fichiers dépendent de vos droits d'utilisateur sur le site. Veuillez activer le mode utilisateur pour activer les actions.
Deutsche Übersetzung
Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.
Vielen Dank im Voraus.
Dokument erstellt 16/10/2009, zuletzt geändert 26/10/2018
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/cs-bibliobrol-source-rf-model/Phone.cs.html
Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.