Tree [r1] / Tags / The -Abstract Factory- Pattern /
 History

HTTPS access


File Date Author Commit
 Abstract Factory1.project 2019-06-09 aliazzz [r1] first commit
 Abstract Factory2.project 2019-06-09 aliazzz [r1] first commit
 Abstract Factory3.project 2019-06-09 aliazzz [r1] first commit
 README.md 2019-06-09 aliazzz [r1] first commit

Read Me

The 'Abstract Factory' Pattern, converted from TwinCAT3 to CODESYS 3

Original Poster: Stephen Henneken

https://stefanhenneken.wordpress.com/2014/11/16/iec-61131-6-abstract-factory-english/

In class-based programming, the factory method pattern is a creational pattern that uses factory methods to deal with the problem of creating objects without having to specify the exact class of the object that will be created. This is done by creating objects by calling a factory method—either specified in an interface and implemented by child classes, or implemented in a base class and optionally overridden by derived classes—rather than by calling a constructor.