예제 #1
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 = (IfcEngineTypeEnum)System.Enum.Parse(typeof(IfcEngineTypeEnum), value.EnumVal, true);
                return;

            default:
                throw new XbimParserException(string.Format("Attribute index {0} is out of range for {1}", propIndex + 1, GetType().Name.ToUpper()));
            }
        }
예제 #2
0
파일: IFC E.cs 프로젝트: jenca-cloud/ggIFC
		internal IfcEngineType(IfcEngineType be) : base(be) { mPredefinedType = be.mPredefinedType; }
예제 #3
0
파일: IFC E.cs 프로젝트: jenca-cloud/ggIFC
		internal IfcEngine(IfcEngine e) : base(e) { mPredefinedType = e.mPredefinedType; }
예제 #4
0
 public IfcEngineType(IfcGloballyUniqueId __GlobalId, IfcOwnerHistory __OwnerHistory, IfcLabel?__Name, IfcText?__Description, IfcIdentifier?__ApplicableOccurrence, IfcPropertySetDefinition[] __HasPropertySets, IfcRepresentationMap[] __RepresentationMaps, IfcLabel?__Tag, IfcLabel?__ElementType, IfcEngineTypeEnum __PredefinedType)
     : base(__GlobalId, __OwnerHistory, __Name, __Description, __ApplicableOccurrence, __HasPropertySets, __RepresentationMaps, __Tag, __ElementType)
 {
     this._PredefinedType = __PredefinedType;
 }
예제 #5
0
		internal IfcEngineType(DatabaseIfc db, IfcEngineType t) : base(db, t) { mPredefinedType = t.mPredefinedType; }
예제 #6
0
		internal IfcEngine(DatabaseIfc db, IfcEngine e) : base(db, e) { mPredefinedType = e.mPredefinedType; }
예제 #7
0
 public IfcEngine(IfcGloballyUniqueId globalId, IfcOwnerHistory ownerHistory, IfcLabel name, IfcText description, IfcLabel objectType, IfcObjectPlacement objectPlacement, IfcProductRepresentation representation, IfcIdentifier tag, IfcEngineTypeEnum predefinedType) : base(globalId, ownerHistory, name, description, objectType, objectPlacement, representation, tag)
 {
     PredefinedType = predefinedType;
 }
예제 #8
0
 public IfcEngineType(IfcGloballyUniqueId globalId, IfcOwnerHistory ownerHistory, IfcLabel name, IfcText description, IfcIdentifier applicableOccurrence, List <IfcPropertySetDefinition> hasPropertySets, List <IfcRepresentationMap> representationMaps, IfcLabel tag, IfcLabel elementType, IfcEngineTypeEnum predefinedType) : base(globalId, ownerHistory, name, description, applicableOccurrence, hasPropertySets, representationMaps, tag, elementType)
 {
     PredefinedType = predefinedType;
 }
예제 #9
0
 /// <summary>
 /// Construct a IfcEngineType with all required attributes.
 /// </summary>
 public IfcEngineType(IfcGloballyUniqueId globalId, IfcEngineTypeEnum predefinedType) : base(globalId)
 {
     PredefinedType = predefinedType;
 }