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:
                _assemblyPlace = (IfcAssemblyPlaceEnum)System.Enum.Parse(typeof(IfcAssemblyPlaceEnum), value.EnumVal, true);
                return;

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

            default:
                throw new XbimParserException(string.Format("Attribute index {0} is out of range for {1}", propIndex + 1, GetType().Name.ToUpper()));
            }
        }
Beispiel #2
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:
                _assemblyPlace =
                    (IfcAssemblyPlaceEnum)Enum.Parse(typeof(IfcAssemblyPlaceEnum), 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:
             _assemblyPlace =
                 (IfcAssemblyPlaceEnum) Enum.Parse(typeof (IfcAssemblyPlaceEnum), value.EnumVal, true);
             break;
         default:
             this.HandleUnexpectedAttribute(propIndex, value); break;
     }
 }
Beispiel #4
0
		public IfcElementAssembly(IfcProduct host, IfcAssemblyPlaceEnum place, IfcElementAssemblyTypeEnum type) : base(host.mDatabase) { mHost = host; AssemblyPlace = place; PredefinedType = type; }
Beispiel #5
0
 internal IfcFurnitureType(DatabaseIfc m, string name, IfcAssemblyPlaceEnum a, IfcFurnitureTypeEnum type)
     : base(m,name)
 {
     mAssemblyPlace = a;
     mPredefinedType = type;
     if (mDatabase.mRelease == ReleaseVersion.IFC2x3 && string.IsNullOrEmpty(ElementType) && type != IfcFurnitureTypeEnum.NOTDEFINED)
         ElementType = type.ToString();
 }
Beispiel #6
0
 internal IfcFurnitureType(DatabaseIfc db, IfcFurnitureType t)
     : base(db, t)
 {
     mAssemblyPlace = t.mAssemblyPlace; mPredefinedType = t.mPredefinedType;
 }
Beispiel #7
0
 public IfcFurnitureType(IfcGloballyUniqueId __GlobalId, IfcOwnerHistory __OwnerHistory, IfcLabel?__Name, IfcText?__Description, IfcIdentifier?__ApplicableOccurrence, IfcPropertySetDefinition[] __HasPropertySets, IfcRepresentationMap[] __RepresentationMaps, IfcLabel?__Tag, IfcLabel?__ElementType, IfcAssemblyPlaceEnum __AssemblyPlace, IfcFurnitureTypeEnum?__PredefinedType)
     : base(__GlobalId, __OwnerHistory, __Name, __Description, __ApplicableOccurrence, __HasPropertySets, __RepresentationMaps, __Tag, __ElementType)
 {
     this.AssemblyPlace  = __AssemblyPlace;
     this.PredefinedType = __PredefinedType;
 }
Beispiel #8
0
 public IfcElementAssembly(IfcGloballyUniqueId globalId, IfcOwnerHistory ownerHistory, IfcLabel name, IfcText description, IfcLabel objectType, IfcObjectPlacement objectPlacement, IfcProductRepresentation representation, IfcIdentifier tag, IfcAssemblyPlaceEnum assemblyPlace, IfcElementAssemblyTypeEnum predefinedType) : base(globalId, ownerHistory, name, description, objectType, objectPlacement, representation, tag)
 {
     AssemblyPlace  = assemblyPlace;
     PredefinedType = predefinedType;
 }
Beispiel #9
0
 internal IfcFurnitureType(DatabaseIfc db, IfcFurnitureType t, DuplicateOptions options) : base(db, t, options)
 {
     mAssemblyPlace = t.mAssemblyPlace; mPredefinedType = t.mPredefinedType;
 }
Beispiel #10
0
 public IfcFurnitureType(IfcGloballyUniqueId globalId, IfcOwnerHistory ownerHistory, IfcLabel name, IfcText description, IfcIdentifier applicableOccurrence, List <IfcPropertySetDefinition> hasPropertySets, List <IfcRepresentationMap> representationMaps, IfcLabel tag, IfcLabel elementType, IfcAssemblyPlaceEnum assemblyPlace, IfcFurnitureTypeEnum predefinedType) : base(globalId, ownerHistory, name, description, applicableOccurrence, hasPropertySets, representationMaps, tag, elementType)
 {
     AssemblyPlace  = assemblyPlace;
     PredefinedType = predefinedType;
 }
Beispiel #11
0
        }                                                            // optional


        /// <summary>
        /// Construct a IfcFurnitureType with all required attributes.
        /// </summary>
        public IfcFurnitureType(IfcGloballyUniqueId globalId, IfcAssemblyPlaceEnum assemblyPlace) : base(globalId)
        {
            AssemblyPlace = assemblyPlace;
        }