Пример #1
0
 protected CAttribute(string rmAttributeName, AssumedTypes.Interval <int> existence,
                      AssumedTypes.List <CObject> children)
 {
     this.RmAttributeName = rmAttributeName;
     this.Existence       = existence;
     this.Children        = children;
 }
Пример #2
0
 public CCodePhrase(TerminologyId terminologyId, List <string> codeList, string rmTypeName, string nodeId,
                    AssumedTypes.Interval <int> occurrences, CAttribute parent, object assumedValue)
     : base(rmTypeName, nodeId, occurrences, parent, assumedValue)
 {
     this.TerminologyId = terminologyId;
     this.CodeList      = codeList;
 }
Пример #3
0
 public CDvQuantity(string rmTypeName, string nodeId, AssumedTypes.Interval <int> occurrences,
                    CAttribute parent, object assumedValue, List <CQuantityItem> list, CodePhrase property)
     : base(rmTypeName, nodeId, occurrences, parent, assumedValue)
 {
     this.List     = list;
     this.Property = property;
 }
Пример #4
0
 public ArchetypeSlot(string rmTypeName, string nodeId, AssumedTypes.Interval<int> occurrences,
   CAttribute parent, AssumedTypes.Set<Assertion.Assertion> includes, 
     AssumedTypes.Set<Assertion.Assertion> excludes): base(rmTypeName, nodeId, occurrences, parent)
 {
     this.Includes = includes;
     this.Excludes = excludes;
 }
Пример #5
0
 public CDvState(string rmTypeName, string nodeId, AssumedTypes.Interval <int> occurrences,
                 CAttribute parent, object assumedValue, StateMachine value)
     :
     base(rmTypeName, nodeId, occurrences, parent, assumedValue)
 {
     this.Value = value;
 }
Пример #6
0
 protected CObject(string rmTypeName, string nodeId, AssumedTypes.Interval <int> occurrences,
                   CAttribute parent)
 {
     this.RmTypeName  = rmTypeName;
     this.Occurrences = occurrences;
     this.NodeId      = nodeId;
     this.Parent      = parent;
 }
Пример #7
0
 public CPrimitiveObject(string rmTypeName, string nodeId, AssumedTypes.Interval <int> occurrences,
                         CAttribute parent, object assumedValue)
     : base(rmTypeName, nodeId, occurrences, parent, assumedValue)
 {
 }
Пример #8
0
 protected CDomainType(string rmTypeName, string nodeId, AssumedTypes.Interval <int> occurrences,
                       CAttribute parent, object assumedValue)
     : base(rmTypeName, nodeId, occurrences, parent, assumedValue)
 {
 }
Пример #9
0
 public ConstraintRef(string rmTypeName, string nodeId, AssumedTypes.Interval <int> occurrences,
                      CAttribute parent, string reference)
     : base(rmTypeName, nodeId, occurrences, parent)
 {
     this.Reference = Reference;
 }
Пример #10
0
 public CDvOrdinal(string rmTypeName, string nodeId, AssumedTypes.Interval <int> occurrences,
                   CAttribute parent, object assumedValue, Set <DvOrdinal> list)
     : base(rmTypeName, nodeId, occurrences, parent, assumedValue)
 {
     this.List = list;
 }
Пример #11
0
 public ArchetypeInternalRef(string rmTypeName, string nodeId, AssumedTypes.Interval <int> occurrences,
                             CAttribute parent, string targetPath)
     : base(rmTypeName, nodeId, occurrences, parent)
 {
     this.TargetPath = targetPath;
 }
Пример #12
0
 public CSingleAttribute(string rmAttributeName, AssumedTypes.Interval <int> existence,
                         AssumedTypes.List <CObject> children) : base(rmAttributeName, existence, children)
 {
 }
Пример #13
0
 protected CDefinedObject(string rmTypeName, string nodeId, AssumedTypes.Interval <int> occurrences,
                          CAttribute parent, object assumedValue)
     : base(rmTypeName, nodeId, occurrences, parent)
 {
     this.AssumedValue = assumedValue;
 }
Пример #14
0
 public Cardinality(bool isOrdered, bool isUnique, AssumedTypes.Interval <int> interval)
 {
     this.IsOrdered = isOrdered;
     this.IsUnique  = isUnique;
     this.Interval  = interval;
 }
Пример #15
0
 public CMultipleAttribute(string rmAttributeName, AssumedTypes.Interval <int> existence, Cardinality cardinality,
                           AssumedTypes.List <CObject> children)
     : base(rmAttributeName, existence, children)
 {
     this.Cardinality = cardinality;
 }
Пример #16
0
 public CComplexObject(string rmTypeName, string nodeId, AssumedTypes.Interval <int> occurrences,
                       CAttribute parent, object assumedValue, AssumedTypes.Set <CAttribute> attributes)
     : base(rmTypeName, nodeId, occurrences, parent, assumedValue)
 {
     this.Attributes = attributes;
 }
Пример #17
0
 protected CReferenceObject(string rmTypeName, string nodeId, AssumedTypes.Interval <int> occurrences,
                            CAttribute parent)
     : base(rmTypeName, nodeId, occurrences, parent)
 {
 }