AWSFilm.cs
Description du code
AWSFilm.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# (AWSFilm.cs) (262 lignes)
using System; using System.Collections.Generic; using System.Text; using System.Drawing; using System.ComponentModel; namespace be.gaudry.bibliobrol.model.aws { public class AWSFilm { #region declarations and constructors private string upc, title, description, rating, runningTime, releasedDate, webPageUrl, imageUrl; private string[] actors, directors; private BindingList<Actor> brolActors; private ActorRole rActor, rRealisator; public Bitmap ImageCache = null; public AWSFilm() { } public AWSFilm(string title, string upc, string description, string[] actors, string[] directors, string rating, string runningTime, string releasedDate, string webPageUrl, string imageUrl) { //this.actors = new string[] { }; //this.directors = new string[] { }; this.upc = checkString(upc); this.title = checkString(title); this.description = checkString(description); this.actors = actors; this.directors = directors; this.rating = checkString(rating); this.runningTime = checkString(runningTime); this.releasedDate = checkString(releasedDate); this.webPageUrl = checkString(webPageUrl); this.imageUrl = checkString(imageUrl); rActor = ModelAdapter.getRole(1); rRealisator = ModelAdapter.getRole(5); } public AWSFilm(string title, string upc, string description, string actors, string directors, string rating, string releasedDate, string webPageUrl, string imageUrl) { this.upc = checkString(upc); this.title = checkString(title); this.description = checkString(description); this.actors[0] = actors; this.directors[0] = directors; this.rating = checkString(rating); this.runningTime = checkString(runningTime); this.releasedDate = checkString(releasedDate); this.webPageUrl = checkString(webPageUrl); this.imageUrl = checkString(imageUrl); rActor = ModelAdapter.getRole(1); rRealisator = ModelAdapter.getRole(5); } #endregion #region properties public string UPC { get { return this.upc; } } public string Title { get { return this.title; } } public string Description { get { return this.description; } } public BindingList<Actor> Actors { get { if (brolActors == null) { if (actors != null) { Actor actor; ActorRole role = rActor;//new ActorRole(); //role.Name = "Acteur"; foreach (string s in actors) { s.Trim(); actor.Role = role; string[] splited = s.Split(separator, 2); if (splited.Length > 0) { actor.FirstName = splited[0]; } if (splited.Length > 1) { actor.LastName = splited[1]; } //actor.Pseudo = s; brolActors.Add(actor); } role = rRealisator;//new ActorRole(); //role.Name = "Réalisateur"; foreach (string s in directors) { s.Trim(); actor.Role = role; string[] splited = s.Split(separator, 2); if (splited.Length > 0) { actor.FirstName = splited[0]; } if (splited.Length > 1) { actor.LastName = splited[1]; } //actor.Pseudo = s; brolActors.Add(actor); } } } return brolActors; } } /* /// <summary> /// Single string with actors, separated by system line returns /// </summary> public string Actors { get { return arrayToString(actors); } } public string[] ActorsArray { get { return actors; } }*/ /// <summary> /// Single string with directors, separated by system line returns /// </summary> public string Directors { get { return arrayToString(directors); } } public string[] DirectorsArray { get { return directors; } } public string ImageUrl { get { return this.imageUrl; } set { imageUrl = value; } } public string Rating { get { return this.rating; } } public string ReleasedDate { get { return this.releasedDate; } } public string RunningTime { get { return this.runningTime; } } public string WebPageUrl { get { return this.webPageUrl; } } #endregion #region overrided methods public override string ToString() { return String.Format("{0} {1}", this.title, this.releasedDate); } #endregion #region private methods /// <summary> /// Converts null strings to the empty string. /// </summary> /// <param name="str">String to check against Nothing.</param> /// <returns>If the original value is _, returns the empty string. Else, returns the original value.</returns> /// <remarks></remarks> private static string checkString(string str) { return (str == null)?"":str; } /// <summary> /// Get string from strings array. Strings are separated by a system line return /// </summary> /// <param name="strs">Strings array to transform</param> /// <returns>Single String (String.Empty if the array is null or empty)</returns> private string arrayToString(string[] strs) { if (strs != null) { foreach (string s in strs) { str.AppendLine(s); } return str.ToString(); } return String.Empty; } #endregion } }
Structure et Fichiers du projet
Afficher/masquer...Icône | Nom | Taille | Modification |
Pas de sous-répertoires. | |||
Icône | Nom | Taille | Modification |
| _ | Répertoire parent | 0 octets | 1731751003 16/11/2024 10:56:43 |
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/aws//AWSFilm.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.