AWSSearchIndices.cs
Description du code
AWSSearchIndices.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# (AWSSearchIndices.cs) (128 lignes)
using System; using System.Collections.Generic; using System.Text; using System.Collections; namespace be.gaudry.bibliobrol.model.aws { public class AWSSearchIndices { #region constructor and declarations public enum CATEGORY { all, books, music, films, software }; private List<Indice> indices; private CATEGORY category; private Indice defaultIndice; public AWSSearchIndices() { category = CATEGORY.all; initAllIndices(); } #endregion #region initializations private void initIndices(CATEGORY cat) { switch (cat) { case CATEGORY.all: initAllIndices(); break; case CATEGORY.books: initBookIndices(); break; case CATEGORY.films: initFilmIndices(); break; case CATEGORY.music: initMusicIndices(); break; case CATEGORY.software: initSoftwareIndices(); break; } } private void initFilmIndices() { indices.Clear(); indices.Add(defaultIndice); } private void initSoftwareIndices() { indices.Clear(); indices.Add(defaultIndice); } private void initMusicIndices() { indices.Clear(); indices.Add(defaultIndice); //indices.Add(new Indice("DVD", "DVD"));//? } private void initBookIndices() { indices.Clear(); indices.Add(defaultIndice); } private void initAllIndices() { indices.Clear(); indices.Add(defaultIndice); } #endregion #region public methods public List<Indice> getIndices(CATEGORY cat) { if (category != cat) { initIndices(cat); } return indices; } public Indice getDefaultIndice() { return defaultIndice; } #endregion #region innerclass indice public class Indice { private string value, display; public Indice(string value, string display) { this.value = value; this.display = display; } public string Display { get { return display; } } public string Value { get { return value; } } } #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 | 1731745878 16/11/2024 09:31:18 |
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/aws/AWSSearchIndices.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.