Actor.cs
Description du code
Actor.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# (Actor.cs) (132 lignes)
using System; using System.Collections.Generic; using System.Text; namespace be.gaudry.bibliobrol.model { [Serializable] public class Actor : Person { #region constructor and declarations private STATUS status; private ActorRole role; public Actor():base() { this.Status = STATUS.none; } public Actor(int id, String lastName) : this() { this.Id = id; this.LastName = lastName; } #endregion #region overrided methods public override String ToString() { s.Append(" "); s.Append(LastName); s.Append(" ("); if(role!=null && role.Name!=null) s.Append(role.Name); else s.Append("Rôle indéterminé"); s.Append(")"); return s.ToString(); } public override int GetHashCode() { //todo : reimplement GetHashCode return this.ToString().GetHashCode(); } public override bool Equals(Object o) { //if (this == o) return true; Actor p = o as Actor; if (p == null) return false; if (this.Id != p.Id) return false; if (this.role != null) { if (!this.role.Equals(p.role)) return false; } else if (p.role!=null) return false; //if (!this.LastName.Equals(p.LastName)) return false; //if (!this.FirstName.Equals(p.FirstName)) return false; //if (!this.getBirthdate().Equals(p.getBirthdate())) return false; return true; } #endregion #region properties public ActorRole Role { get { return this.role; } set { this.role = value; } } public STATUS Status { get { return this.status; } set { this.status = value; } } /// <summary> /// Get string with lastname, firstname, and role /// </summary> public String Display { get { /*StringBuilder display = new StringBuilder(this.ToString()); if (role!=null && role.Name != null && !role.Name.Equals("")) { display.Append(" ("); display.Append(role.Name); display.Append(")"); } return display.ToString(); */ return this.ToString(); } } /// <summary> /// Get string with firstname and lastname /// </summary> public String DisplayPerson { get { return String.Format("{0} {1}", FirstName, LastName); } } #endregion #region public methods public void setFromPerson(Person person) { this.Id = person.Id; this.LastName = person.LastName; this.FirstName = person.FirstName; this.Sex = person.Sex; } #endregion /* /// <summary> /// Get person without phones or mail addresses /// </summary> /// <param name="reset">true if we want insert this person as a new person</param> /// <returns></returns> internal Person getPerson(bool reset) { int id = (reset)?-1:Id; Person p = new Person(id,LastName); p.FirstName = FirstName; p.Pseudo = Pseudo; p.Birthdate = Birthdate; p.Sex = Sex; return p; }*/ } }
Structure et Fichiers du projet
Afficher/masquer...Icône | Nom | Taille | Modification |
Icône | Nom | Taille | Modification |
| _ | Répertoire parent | 0 octets | 1734868708 22/12/2024 12:58:28 |
| _ | 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/Actor.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.