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 | 1731729008 16/11/2024 04:50:08 |
| _ | 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.
Nederlandse vertaling
U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.
Bij voorbaat dank.
Document heeft de 16/10/2009 gemaakt, de laatste keer de 26/10/2018 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/cs-bibliobrol-source-rf-model//Phone.cs.html
De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.