Ejemplo n.º 1
0
 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 = (IfcBoilerTypeEnum) Enum.Parse(typeof (IfcBoilerTypeEnum), value.EnumVal, true);
             break;
         default:
             this.HandleUnexpectedAttribute(propIndex, value); break;
     }
 }
Ejemplo n.º 2
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 = (IfcBoilerTypeEnum)System.Enum.Parse(typeof(IfcBoilerTypeEnum), value.EnumVal, true);
                return;

            default:
                throw new XbimParserException(string.Format("Attribute index {0} is out of range for {1}", propIndex + 1, GetType().Name.ToUpper()));
            }
        }
Ejemplo n.º 3
0
        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 = (IfcBoilerTypeEnum)Enum.Parse(typeof(IfcBoilerTypeEnum), value.EnumVal, true);
                break;

            default:
                this.HandleUnexpectedAttribute(propIndex, value); break;
            }
        }
Ejemplo n.º 4
0
 internal IfcBoiler(DatabaseIfc db, IfcBoiler b)
     : base(db,b)
 {
     mPredefinedType = b.mPredefinedType;
 }
Ejemplo n.º 5
0
 public IfcBoiler(IfcGloballyUniqueId globalId, IfcOwnerHistory ownerHistory, IfcLabel name, IfcText description, IfcLabel objectType, IfcObjectPlacement objectPlacement, IfcProductRepresentation representation, IfcIdentifier tag, IfcBoilerTypeEnum predefinedType) : base(globalId, ownerHistory, name, description, objectType, objectPlacement, representation, tag)
 {
     PredefinedType = predefinedType;
 }
Ejemplo n.º 6
0
 public IfcBoilerType(IfcGloballyUniqueId globalId, IfcOwnerHistory ownerHistory, IfcLabel name, IfcText description, IfcIdentifier applicableOccurrence, List <IfcPropertySetDefinition> hasPropertySets, List <IfcRepresentationMap> representationMaps, IfcLabel tag, IfcLabel elementType, IfcBoilerTypeEnum predefinedType) : base(globalId, ownerHistory, name, description, applicableOccurrence, hasPropertySets, representationMaps, tag, elementType)
 {
     PredefinedType = predefinedType;
 }
Ejemplo n.º 7
0
 /// <summary>
 /// Construct a IfcBoilerType with all required attributes.
 /// </summary>
 public IfcBoilerType(IfcGloballyUniqueId globalId, IfcBoilerTypeEnum predefinedType) : base(globalId)
 {
     PredefinedType = predefinedType;
 }
Ejemplo n.º 8
0
 public IfcBoilerType(IfcGloballyUniqueId __GlobalId, IfcOwnerHistory __OwnerHistory, IfcLabel?__Name, IfcText?__Description, IfcIdentifier?__ApplicableOccurrence, IfcPropertySetDefinition[] __HasPropertySets, IfcRepresentationMap[] __RepresentationMaps, IfcLabel?__Tag, IfcLabel?__ElementType, IfcBoilerTypeEnum __PredefinedType)
     : base(__GlobalId, __OwnerHistory, __Name, __Description, __ApplicableOccurrence, __HasPropertySets, __RepresentationMaps, __Tag, __ElementType)
 {
     this.PredefinedType = __PredefinedType;
 }
Ejemplo n.º 9
0
 public IfcBoilerType(DatabaseIfc db, string name, IfcBoilerTypeEnum type) : base(db)
 {
     Name = name; mPredefinedType = type;
 }
Ejemplo n.º 10
0
 internal IfcBoilerType(DatabaseIfc db, IfcBoilerType t, DuplicateOptions options) : base(db, t, options)
 {
     mPredefinedType = t.mPredefinedType;
 }
Ejemplo n.º 11
0
 internal IfcBoiler(DatabaseIfc db, IfcBoiler b, DuplicateOptions options) : base(db, b, options)
 {
     mPredefinedType = b.mPredefinedType;
 }
Ejemplo n.º 12
0
        internal IfcBoilerTypeEnum mPredefinedType = IfcBoilerTypeEnum.NOTDEFINED; // : IfcBoilerypeEnum;

        #endregion Fields

        #region Constructors

        public IfcBoilerType(DatabaseIfc db, string name, IfcBoilerTypeEnum type)
            : base(db)
        {
            Name = name; mPredefinedType = type;
        }
Ejemplo n.º 13
0
 internal IfcBoilerType(DatabaseIfc db, IfcBoilerType t, IfcOwnerHistory ownerHistory, bool downStream) : base(db, t, ownerHistory, downStream)
 {
     mPredefinedType = t.mPredefinedType;
 }
Ejemplo n.º 14
0
 internal IfcBoiler(DatabaseIfc db, IfcBoiler b, IfcOwnerHistory ownerHistory, bool downStream) : base(db, b, ownerHistory, downStream)
 {
     mPredefinedType = b.mPredefinedType;
 }
Ejemplo n.º 15
0
		internal IfcBoilerType(DatabaseIfc m, string name, IfcBoilerTypeEnum type) : base(m) { Name = name; mPredefinedType = type; }
Ejemplo n.º 16
0
		internal IfcBoilerType(IfcBoilerType t) : base(t) { mPredefinedType = t.mPredefinedType; }
Ejemplo n.º 17
0
		internal IfcBoiler(IfcBoiler b) : base(b) { mPredefinedType = b.mPredefinedType; }
Ejemplo n.º 18
0
 internal IfcBoilerType(DatabaseIfc db, IfcBoilerType t)
     : base(db, t)
 {
     mPredefinedType = t.mPredefinedType;
 }