示例#1
0
 internal LinearGaugeCollection(NamedElement parent, CommonElements common)
     : base(parent, common)
 {
     elementType = typeof(LinearGauge);
 }
示例#2
0
 internal KnobCollection(NamedElement parent, CommonElements common)
     : base(parent, common)
 {
     elementType = typeof(Knob);
 }
示例#3
0
 internal GaugeLabelCollection(NamedElement parent, CommonElements common)
     : base(parent, common)
 {
     elementType = typeof(GaugeLabel);
 }
示例#4
0
 internal CircularPointerCollection(NamedElement parent, CommonElements common)
     : base(parent, common)
 {
     elementType = typeof(CircularPointer);
 }
示例#5
0
 internal InputValueCollection(NamedElement parent, CommonElements common)
     : base(parent, common)
 {
     elementType = typeof(InputValue);
 }
 internal NumericRangeCollection(NamedElement parent, CommonElements common)
     : base(parent, common)
 {
     elementType = typeof(NumericRange);
 }
 internal NumericIndicatorCollection(NamedElement parent, CommonElements common)
     : base(parent, common)
 {
     elementType = typeof(NumericIndicator);
 }
 internal StateCollection(NamedElement parent, CommonElements common)
     : base(parent, common)
 {
     elementType = typeof(State);
 }
示例#9
0
 internal NamedCollection(NamedElement parent, CommonElements common)
 {
     Common      = common;
     this.parent = parent;
 }
 internal CalculatedValueCollection(NamedElement parent, CommonElements common)
     : base(parent, common)
 {
     elementType = typeof(CalculatedValue);
 }