StaticObservable.cs
Description du code
StaticObservable.cs est un fichier du projet BrolDev.Ce fichier est situé dans /var/www/bin/sniplets/bibliobrol/broldev/src/.
Projet BrolDev : Librairie de composants réutilisables pour les applications BrolDev en CSharp.
Code source ou contenu du fichier
Code c# (StaticObservable.cs) (90 lignes)
namespace be.gaudry.observer { /// <summary> /// Singleton used to add observable features into a class (the observer may not know the class, it must know only this). /// </summary> public class StaticObservable { #region singleton private static Observable instance = null; private StaticObservable() { } /// <summary> /// /// </summary> private static Observable Instance { get { lock (padlock) { if (instance == null) { } return instance; } } } #endregion #region observable methods /// <summary> /// Send a notification to all registerd obervers /// </summary> /// <param name="notification">notification to send</param> public static void notify(Notification notification) { StaticObservable.Instance.notify(notification); } /// <summary> /// Add (register) an observer /// </summary> /// <param name="o">observer to add</param> public static void addObserver(IObserver o) { StaticObservable.Instance.addObserver(o); } /// <summary> /// Remove an observer /// </summary> /// <param name="o">observer to remove</param> public static void removeObserver(IObserver o) { StaticObservable.Instance.removeObserver(o); } #endregion #region static helper methods /// <summary> /// store errors and not display it /// </summary> /// <param name="notification">notification to send</param> public static void hideErrors() { } /// <summary> /// display stored errors /// </summary> /// <param name="notification">notification to send</param> public static void showErrors() { } /// <summary> /// lean stored errors and adopt normal behaviour /// </summary> /// <param name="notification">notification to send</param> public static void showNewErrors() { } #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 | 1737504628 22/01/2025 01:10:28 |
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-broldev-source-rf-observer/StaticObservable.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.