Beispiel #1
0
 public LibraryElement(IdElement Name, ImplementationElement Implementation, ExportsElement Exports, CompoundElement Compound)
 {
     name           = Name;
     implementation = Implementation;
     exports        = Exports;
     compound       = Compound;
 }
Beispiel #2
0
 public ProgramElement(IdElement Name, IdListElement Params, ImplementationElement Implementation, CompoundElement Compound)
 {
     name           = Name;
     pparams        = Params;
     implementation = Implementation;
     compound       = Compound;
 }
Beispiel #3
0
 public UnitElement(IdElement Name, InterfaceSecElement Interface, ImplementationElement Implementation, InitializationElement Initialization, FinalizationElement Finalization)
 {
     name           = Name;
     uinterface     = Interface;
     implementation = Implementation;
     initialization = Initialization;
     finalization   = Finalization;
 }
Beispiel #4
0
 public void AddId(IdElement Id)
 {
     ids.Add(Id);
 }
Beispiel #5
0
 public UseElement(IdElement Unit, IdListElement In)
 {
     unit   = Unit;
     unitin = In;
 }