Exemplo n.º 1
0
        private static FactoryMethod <TKey, TObject> instance()
        {
            if (m_cInstance == null)
            {
                m_cInstance = new FactoryMethod <TKey, TObject>();

                m_cInstance.initialize();
            }

            return(m_cInstance);
        }
Exemplo n.º 2
0
 public static Component create(String sNaam)
 {
     return(FactoryMethod <String, Component> .create(sNaam));
 }