Ejemplo n.º 1
0
 internal SwComponentEnumerator(ISwAssembly assm, IComponent2 parent)
 {
     m_CurComp = null;
     m_Assm    = assm;
     m_Parent  = parent;
     Reset();
 }
Ejemplo n.º 2
0
 internal SwComponent(IComponent2 comp, ISwAssembly parentAssembly) : base(comp)
 {
     m_ParentAssembly = parentAssembly;
     Component        = comp;
     Children         = new SwChildComponentsCollection(parentAssembly, comp);
     Features         = new ComponentFeatureRepository(parentAssembly, comp);
     Bodies           = new SwComponentBodyCollection(comp, parentAssembly);
 }
Ejemplo n.º 3
0
 internal SwComponentCollection(ISwAssembly assm)
 {
     m_Assm = assm;
 }
Ejemplo n.º 4
0
 public SwChildComponentsCollection(ISwAssembly rootAssm, SwComponent comp) : base(rootAssm)
 {
     m_Comp = comp;
 }
Ejemplo n.º 5
0
 public SwAssemblyComponentCollection(ISwAssembly assm) : base(assm)
 {
     m_Assm = assm;
 }
Ejemplo n.º 6
0
 public SwAssemblyComponentCollection(ISwAssembly assm, IConfiguration conf) : base(assm)
 {
     m_Assm = assm;
     m_Conf = conf;
 }