Design Pattern Examples
Overview of object-oriented design patterns
observer_class.py File Reference

Implementation of the ObserverForDecimal, ObserverForHexaDecimal, and ObserverForBinary classes as used in the Observer Pattern. More...

Go to the source code of this file.

Classes

class  ObserverForDecimal
 Represents an observer that prints out the current number from the Subject in decimal. More...
 
class  ObserverForHexaDecimal
 Represents an observer that prints out the current number from the Subject in hexadecimal. More...
 
class  ObserverForBinary
 Represents an observer that prints out the current number from the Subject in binary. More...
 

Namespaces

namespace  DesignPatternExamples_python
 The DesignPatternExamples_python package, containing 20 examples of design patterns, each in their own namespace.
 
namespace  DesignPatternExamples_python.observer
 
namespace  DesignPatternExamples_python.observer.observer_class
 

Detailed Description

Implementation of the ObserverForDecimal, ObserverForHexaDecimal, and ObserverForBinary classes as used in the Observer Pattern.

Definition in file observer_class.py.