Example #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:
            case 9:
            case 10:
                base.Parse(propIndex, value, nestedIndex);
                return;

            case 11:
                _predefinedType = (IfcSubContractResourceTypeEnum)System.Enum.Parse(typeof(IfcSubContractResourceTypeEnum), 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 IfcSubContractResourceType(IfcGloballyUniqueId __GlobalId, IfcOwnerHistory __OwnerHistory, IfcLabel?__Name, IfcText?__Description, IfcIdentifier?__ApplicableOccurrence, IfcPropertySetDefinition[] __HasPropertySets, IfcIdentifier?__Identification, IfcText?__LongDescription, IfcLabel?__ResourceType, IfcAppliedValue[] __BaseCosts, IfcPhysicalQuantity __BaseQuantity, IfcSubContractResourceTypeEnum __PredefinedType)
     : base(__GlobalId, __OwnerHistory, __Name, __Description, __ApplicableOccurrence, __HasPropertySets, __Identification, __LongDescription, __ResourceType, __BaseCosts, __BaseQuantity)
 {
     this.PredefinedType = __PredefinedType;
 }
Example #3
0
 public IfcSubContractResourceType(IfcGloballyUniqueId globalId, IfcOwnerHistory ownerHistory, IfcLabel name, IfcText description, IfcIdentifier applicableOccurrence, List <IfcPropertySetDefinition> hasPropertySets, IfcIdentifier identification, IfcText longDescription, IfcLabel resourceType, List <IfcAppliedValue> baseCosts, IfcPhysicalQuantity baseQuantity, IfcSubContractResourceTypeEnum predefinedType) : base(globalId, ownerHistory, name, description, applicableOccurrence, hasPropertySets, identification, longDescription, resourceType, baseCosts, baseQuantity)
 {
     PredefinedType = predefinedType;
 }
Example #4
0
 /// <summary>
 /// Construct a IfcSubContractResourceType with all required attributes.
 /// </summary>
 public IfcSubContractResourceType(IfcGloballyUniqueId globalId, IfcSubContractResourceTypeEnum predefinedType) : base(globalId)
 {
     PredefinedType = predefinedType;
 }
Example #5
0
 public IfcSubContractResource(IfcGloballyUniqueId globalId, IfcOwnerHistory ownerHistory, IfcLabel name, IfcText description, IfcLabel objectType, IfcIdentifier identification, IfcText longDescription, IfcResourceTime usage, List <IfcAppliedValue> baseCosts, IfcPhysicalQuantity baseQuantity, IfcSubContractResourceTypeEnum predefinedType) : base(globalId, ownerHistory, name, description, objectType, identification, longDescription, usage, baseCosts, baseQuantity)
 {
     PredefinedType = predefinedType;
 }
Example #6
0
		internal IfcSubContractResourceType(DatabaseIfc m, string name, IfcSubContractResourceTypeEnum type) : base(m) { Name = name; mPredefinedType = type; }
Example #7
0
		internal IfcSubContractResourceType(IfcSubContractResourceType t) : base(t) { mPredefinedType = t.mPredefinedType; }
Example #8
0
		internal IfcSubContractResource(IfcSubContractResource o) : base(o) { mPredefinedType = o.mPredefinedType; }