Exemplo n.º 1
0
 public IfcAttribute(int order, IfcAttributeState state, IfcAttributeType ifcType, IfcAttributeType memberType)
 {
     _state      = state;
     _order      = order;
     _ifcType    = ifcType;
     _memberType = memberType;
 }
Exemplo n.º 2
0
 public IfcAttribute(int order, IfcAttributeState state, IfcAttributeType ifcType, int minCardinality)
 {
     _state          = state;
     _order          = order;
     _ifcType        = ifcType;
     _minCardinality = minCardinality;
 }
Exemplo n.º 3
0
 public IfcAttribute(int order, IfcAttributeState state, IfcAttributeType ifcType, IfcAttributeType memberType)
 {
     _state = state;
     _order = order;
     _ifcType = ifcType;
     _memberType = memberType;
 }
Exemplo n.º 4
0
 public IfcAttribute(int order, IfcAttributeState state, IfcAttributeType ifcType, IfcAttributeType memberType,
                     int minCardinality)
 {
     _state = state;
     _order = order;
     _ifcType = ifcType;
     _memberType = memberType;
     _minCardinality = minCardinality;
 }
Exemplo n.º 5
0
 public IfcAttribute(int order, IfcAttributeState state)
 {
     _state = state;
     _order = order;
     _ifcType = IfcAttributeType.Class;
 }
Exemplo n.º 6
0
 public IfcAttribute(int order, IfcAttributeState state)
 {
     _state   = state;
     _order   = order;
     _ifcType = IfcAttributeType.Class;
 }