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 =
                    (IfcJunctionBoxTypeEnum)Enum.Parse(typeof(IfcJunctionBoxTypeEnum), value.EnumVal, true);
                break;

            default:
                this.HandleUnexpectedAttribute(propIndex, value); break;
            }
        }
 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 =
                 (IfcJunctionBoxTypeEnum) Enum.Parse(typeof (IfcJunctionBoxTypeEnum), value.EnumVal, true);
             break;
         default:
             this.HandleUnexpectedAttribute(propIndex, value); break;
     }
 }
Example #3
0
        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 = (IfcJunctionBoxTypeEnum)System.Enum.Parse(typeof(IfcJunctionBoxTypeEnum), value.EnumVal, true);
                return;

            default:
                throw new XbimParserException(string.Format("Attribute index {0} is out of range for {1}", propIndex + 1, GetType().Name.ToUpper()));
            }
        }
Example #4
0
 internal IfcJunctionBox(DatabaseIfc db, IfcJunctionBox b) : base(db, b)
 {
     mPredefinedType = b.mPredefinedType;
 }
Example #5
0
 public IfcJunctionBoxType(IfcGloballyUniqueId globalId, IfcOwnerHistory ownerHistory, IfcLabel name, IfcText description, IfcIdentifier applicableOccurrence, List <IfcPropertySetDefinition> hasPropertySets, List <IfcRepresentationMap> representationMaps, IfcLabel tag, IfcLabel elementType, IfcJunctionBoxTypeEnum predefinedType) : base(globalId, ownerHistory, name, description, applicableOccurrence, hasPropertySets, representationMaps, tag, elementType)
 {
     PredefinedType = predefinedType;
 }
Example #6
0
 /// <summary>
 /// Construct a IfcJunctionBoxType with all required attributes.
 /// </summary>
 public IfcJunctionBoxType(IfcGloballyUniqueId globalId, IfcJunctionBoxTypeEnum predefinedType) : base(globalId)
 {
     PredefinedType = predefinedType;
 }
Example #7
0
		internal IfcJunctionBoxType(DatabaseIfc m, string name, IfcJunctionBoxTypeEnum type) : base(m) { Name = name; mPredefinedType = type; }
Example #8
0
 internal IfcJunctionBox(DatabaseIfc db, IfcJunctionBox b)
     : base(db, b)
 {
     mPredefinedType = b.mPredefinedType;
 }
Example #9
0
 internal IfcJunctionBoxType(DatabaseIfc db, IfcJunctionBoxType t, DuplicateOptions options) : base(db, t, options)
 {
     mPredefinedType = t.mPredefinedType;
 }
Example #10
0
 internal IfcJunctionBoxType(DatabaseIfc db, IfcJunctionBoxType t, IfcOwnerHistory ownerHistory, bool downStream) : base(db, t, ownerHistory, downStream)
 {
     mPredefinedType = t.mPredefinedType;
 }
Example #11
0
 public IfcJunctionBox(IfcGloballyUniqueId globalId, IfcOwnerHistory ownerHistory, IfcLabel name, IfcText description, IfcLabel objectType, IfcObjectPlacement objectPlacement, IfcProductRepresentation representation, IfcIdentifier tag, IfcJunctionBoxTypeEnum predefinedType) : base(globalId, ownerHistory, name, description, objectType, objectPlacement, representation, tag)
 {
     PredefinedType = predefinedType;
 }
Example #12
0
 public IfcJunctionBoxType(IfcGloballyUniqueId __GlobalId, IfcOwnerHistory __OwnerHistory, IfcLabel?__Name, IfcText?__Description, IfcIdentifier?__ApplicableOccurrence, IfcPropertySetDefinition[] __HasPropertySets, IfcRepresentationMap[] __RepresentationMaps, IfcLabel?__Tag, IfcLabel?__ElementType, IfcJunctionBoxTypeEnum __PredefinedType)
     : base(__GlobalId, __OwnerHistory, __Name, __Description, __ApplicableOccurrence, __HasPropertySets, __RepresentationMaps, __Tag, __ElementType)
 {
     this.PredefinedType = __PredefinedType;
 }
Example #13
0
 internal IfcJunctionBoxType(IfcJunctionBoxType t) : base(t)
 {
     mPredefinedType = t.mPredefinedType;
 }
Example #14
0
 internal IfcJunctionBox(IfcJunctionBox b) : base(b)
 {
     mPredefinedType = b.mPredefinedType;
 }
Example #15
0
 internal IfcJunctionBoxType(DatabaseIfc db, IfcJunctionBoxType t) : base(db, t)
 {
     mPredefinedType = t.mPredefinedType;
 }
Example #16
0
		internal IfcJunctionBox(IfcJunctionBox b) : base(b) { mPredefinedType = b.mPredefinedType; }
Example #17
0
 internal IfcJunctionBox(DatabaseIfc db, IfcJunctionBox b, DuplicateOptions options) : base(db, b, options)
 {
     mPredefinedType = b.mPredefinedType;
 }
Example #18
0
		internal IfcJunctionBoxType(IfcJunctionBoxType t) : base(t) { mPredefinedType = t.mPredefinedType; }
Example #19
0
 public IfcJunctionBoxType(DatabaseIfc m, string name, IfcJunctionBoxTypeEnum type) : base(m)
 {
     Name = name; mPredefinedType = type;
 }
Example #20
0
 internal IfcJunctionBoxType(DatabaseIfc db, IfcJunctionBoxType t)
     : base(db, t)
 {
     mPredefinedType = t.mPredefinedType;
 }