public override void IfcParse(int propIndex, IPropertyValue value)
        {
            switch (propIndex)
            {
            case 0:
            case 1:
            case 2:
            case 3:
            case 4:
            case 5:
            case 6:
            case 7:
            case 8:
                base.IfcParse(propIndex, value);
                break;

            case 9:
                _predefinedType =
                    (IfcWasteTerminalTypeEnum)Enum.Parse(typeof(IfcWasteTerminalTypeEnum), value.EnumVal, true);
                break;

            default:
                this.HandleUnexpectedAttribute(propIndex, value);
                break;
            }
        }
        public override void Parse(int propIndex, IPropertyValue value, int[] nestedIndex)
        {
            switch (propIndex)
            {
            case 0:
            case 1:
            case 2:
            case 3:
            case 4:
            case 5:
            case 6:
            case 7:
            case 8:
                base.Parse(propIndex, value, nestedIndex);
                return;

            case 9:
                _predefinedType = (IfcWasteTerminalTypeEnum)System.Enum.Parse(typeof(IfcWasteTerminalTypeEnum), value.EnumVal, true);
                return;

            default:
                throw new XbimParserException(string.Format("Attribute index {0} is out of range for {1}", propIndex + 1, GetType().Name.ToUpper()));
            }
        }
 public override void IfcParse(int propIndex, IPropertyValue value)
 {
     switch (propIndex)
     {
         case 0:
         case 1:
         case 2:
         case 3:
         case 4:
         case 5:
         case 6:
         case 7:
         case 8:
             base.IfcParse(propIndex, value);
             break;
         case 9:
             _predefinedType =
                 (IfcWasteTerminalTypeEnum) Enum.Parse(typeof (IfcWasteTerminalTypeEnum), value.EnumVal, true);
             break;
         default:
             this.HandleUnexpectedAttribute(propIndex, value);
             break;
     }
 }
Exemplo n.º 4
0
 internal IfcWasteTerminalType(DatabaseIfc m, string name, IfcWasteTerminalTypeEnum t)
     : base(m)
 {
     Name = name; mPredefinedType = t;
 }
Exemplo n.º 5
0
 internal IfcWasteTerminalType(DatabaseIfc db, IfcWasteTerminalType t)
     : base(db, t)
 {
     mPredefinedType = t.mPredefinedType;
 }
Exemplo n.º 6
0
 internal IfcWasteTerminalType(DatabaseIfc db, IfcWasteTerminalType t, DuplicateOptions options) : base(db, t, options)
 {
     mPredefinedType = t.mPredefinedType;
 }
Exemplo n.º 7
0
 internal IfcWasteTerminalType(IfcWasteTerminalType be) : base(be)
 {
     mPredefinedType = be.mPredefinedType;
 }
Exemplo n.º 8
0
 internal IfcWasteTerminal(IfcWasteTerminal t) : base(t)
 {
     mPredefinedType = t.mPredefinedType;
 }
Exemplo n.º 9
0
		internal IfcWasteTerminal(IfcWasteTerminal t) : base(t) { mPredefinedType = t.mPredefinedType; }
Exemplo n.º 10
0
 /// <summary>
 /// Construct a IfcWasteTerminalType with all required attributes.
 /// </summary>
 public IfcWasteTerminalType(IfcGloballyUniqueId globalId, IfcWasteTerminalTypeEnum predefinedType) : base(globalId)
 {
     PredefinedType = predefinedType;
 }
Exemplo n.º 11
0
 public IfcWasteTerminalType(IfcGloballyUniqueId __GlobalId, IfcOwnerHistory __OwnerHistory, IfcLabel?__Name, IfcText?__Description, IfcIdentifier?__ApplicableOccurrence, IfcPropertySetDefinition[] __HasPropertySets, IfcRepresentationMap[] __RepresentationMaps, IfcLabel?__Tag, IfcLabel?__ElementType, IfcWasteTerminalTypeEnum __PredefinedType)
     : base(__GlobalId, __OwnerHistory, __Name, __Description, __ApplicableOccurrence, __HasPropertySets, __RepresentationMaps, __Tag, __ElementType)
 {
     this.PredefinedType = __PredefinedType;
 }
Exemplo n.º 12
0
 public IfcWasteTerminalType(DatabaseIfc db, string name, IfcWasteTerminalTypeEnum t) : base(db)
 {
     Name = name; PredefinedType = t;
 }
Exemplo n.º 13
0
 internal IfcWasteTerminalType(DatabaseIfc db, IfcWasteTerminalType t, IfcOwnerHistory ownerHistory, bool downStream) : base(db, t, ownerHistory, downStream)
 {
     mPredefinedType = t.mPredefinedType;
 }
Exemplo n.º 14
0
 public IfcWasteTerminal(IfcGloballyUniqueId globalId, IfcOwnerHistory ownerHistory, IfcLabel name, IfcText description, IfcLabel objectType, IfcObjectPlacement objectPlacement, IfcProductRepresentation representation, IfcIdentifier tag, IfcWasteTerminalTypeEnum predefinedType) : base(globalId, ownerHistory, name, description, objectType, objectPlacement, representation, tag)
 {
     PredefinedType = predefinedType;
 }
Exemplo n.º 15
0
		internal IfcWasteTerminalType(IfcWasteTerminalType be) : base(be) { mPredefinedType = be.mPredefinedType; }
Exemplo n.º 16
0
 internal IfcWasteTerminalType(DatabaseIfc db, IfcWasteTerminalType t) : base(db, t)
 {
     mPredefinedType = t.mPredefinedType;
 }
Exemplo n.º 17
0
 internal IfcWasteTerminalType(DatabaseIfc m, string name, IfcWasteTerminalTypeEnum t) : base(m)
 {
     Name = name; mPredefinedType = t;
 }
Exemplo n.º 18
0
 public IfcWasteTerminalType(IfcGloballyUniqueId globalId, IfcOwnerHistory ownerHistory, IfcLabel name, IfcText description, IfcIdentifier applicableOccurrence, List <IfcPropertySetDefinition> hasPropertySets, List <IfcRepresentationMap> representationMaps, IfcLabel tag, IfcLabel elementType, IfcWasteTerminalTypeEnum predefinedType) : base(globalId, ownerHistory, name, description, applicableOccurrence, hasPropertySets, representationMaps, tag, elementType)
 {
     PredefinedType = predefinedType;
 }