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 | 1731728377 16/11/2024 04:39:37 |
| _ | 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.
English translation
You have asked to visit this site in English. For now, only the interface is translated, but not all the content yet.If you want to help me in translations, your contribution is welcome. All you need to do is register on the site, and send me a message asking me to add you to the group of translators, which will give you the opportunity to translate the pages you want. A link at the bottom of each translated page indicates that you are the translator, and has a link to your profile.
Thank you in advance.
Document created the 16/10/2009, last modified the 26/10/2018
Source of the printed document:https://www.gaudry.be/en/cs-bibliobrol-source-rf-model//Phone.cs.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.