December 2011
Design Pattern: Singleton
17/12/11 18:05 Category: Design Pattern | Software engineering
The singleton is a design pattern used when it is needed to have one and only one object of a certain class.
As the singleton instance can be accessed from anywhere in a system, this design pattern can be used to coordinate actions, or to replace global variables.
As the singleton instance can be accessed from anywhere in a system, this design pattern can be used to coordinate actions, or to replace global variables.
Design Pattern: Factory
07/12/11 21:41 Category: Design Pattern | Software engineering
The Factory is a design pattern used when it is needed to create objets without having to specify the exact class to implement. We only know need to know the general usage of the implemented class, not the internal operations.
That’s why a Factory return objets who are either :
- from a class extending a known abstract class,
- or from a class implementing a known interface.
That’s why a Factory return objets who are either :
- from a class extending a known abstract class,
- or from a class implementing a known interface.
SoHO Viewer 2.0
06/12/11 07:00 Category: My iPhone apps
SoHO Viewer is now in version 2.0.
This version resolves a major fault: SoHO Viewer was always re-downloading all pictures at launch.
I am pleased to announce you this fault is no more. The application now uses a gateway in order to know which pictures has been updated and should be downloaded.
This version resolves a major fault: SoHO Viewer was always re-downloading all pictures at launch.
I am pleased to announce you this fault is no more. The application now uses a gateway in order to know which pictures has been updated and should be downloaded.