Design Pattern Examples
Overview of object-oriented design patterns
bridge Directory Reference
Directory dependency graph for bridge:
bridge

Files

file  bridge/__init__.py [code]
 Python implementation of the Bridge Pattern example.
 
file  bridge_consolelogger.py [code]
 The ConsoleLogger class as used in the Bridge Pattern.
 
file  bridge_exercise.py [code]
 Implementation of the DesignPatternExamples_python.bridge.bridge_exercise.Bridge_Exercise "Bridge_Exercise"() function as used in the Bridge Pattern.
 
file  bridge_filelogger.py [code]
 The FileLogger class as used in the Bridge Pattern.
 
file  bridge_logger.py [code]
 The Logger bridge class as used in the Bridge Pattern.
 
file  bridge_loggerhelpers.py [code]
 Implementation of the FormatLogLine function used in the Bridge Pattern.
 
file  bridge_loggerinterface.py [code]
 The ILogger interface as used in the Bridge Pattern.
 
file  bridge_nulllogger.py [code]
 The NullLogger class as used in the Bridge Pattern.