All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bimserver.models.ifc4.IfcDoorStyle Maven / Gradle / Ivy

Go to download

Base project for BIMserver plugin development. Some plugins mights also need the Shared library

The newest version!
/**
 * Copyright (C) 2009-2014 BIMserver.org
 * 
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 * 
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see .
 */
package org.bimserver.models.ifc4;

/**
 * 
 * A representation of the model object 'Ifc Door Style'.
 * 
 *
 * 

* The following features are supported: *

*
    *
  • {@link org.bimserver.models.ifc4.IfcDoorStyle#getOperationType Operation Type}
  • *
  • {@link org.bimserver.models.ifc4.IfcDoorStyle#getConstructionType Construction Type}
  • *
  • {@link org.bimserver.models.ifc4.IfcDoorStyle#getParameterTakesPrecedence Parameter Takes Precedence}
  • *
  • {@link org.bimserver.models.ifc4.IfcDoorStyle#getSizeable Sizeable}
  • *
* * @see org.bimserver.models.ifc4.Ifc4Package#getIfcDoorStyle() * @model * @generated */ public interface IfcDoorStyle extends IfcTypeProduct { /** * Returns the value of the 'Operation Type' attribute. * The literals are from the enumeration {@link org.bimserver.models.ifc4.IfcDoorStyleOperationEnum}. * *

* If the meaning of the 'Operation Type' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Operation Type' attribute. * @see org.bimserver.models.ifc4.IfcDoorStyleOperationEnum * @see #setOperationType(IfcDoorStyleOperationEnum) * @see org.bimserver.models.ifc4.Ifc4Package#getIfcDoorStyle_OperationType() * @model * @generated */ IfcDoorStyleOperationEnum getOperationType(); /** * Sets the value of the '{@link org.bimserver.models.ifc4.IfcDoorStyle#getOperationType Operation Type}' attribute. * * * @param value the new value of the 'Operation Type' attribute. * @see org.bimserver.models.ifc4.IfcDoorStyleOperationEnum * @see #getOperationType() * @generated */ void setOperationType(IfcDoorStyleOperationEnum value); /** * Returns the value of the 'Construction Type' attribute. * The literals are from the enumeration {@link org.bimserver.models.ifc4.IfcDoorStyleConstructionEnum}. * *

* If the meaning of the 'Construction Type' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Construction Type' attribute. * @see org.bimserver.models.ifc4.IfcDoorStyleConstructionEnum * @see #setConstructionType(IfcDoorStyleConstructionEnum) * @see org.bimserver.models.ifc4.Ifc4Package#getIfcDoorStyle_ConstructionType() * @model * @generated */ IfcDoorStyleConstructionEnum getConstructionType(); /** * Sets the value of the '{@link org.bimserver.models.ifc4.IfcDoorStyle#getConstructionType Construction Type}' attribute. * * * @param value the new value of the 'Construction Type' attribute. * @see org.bimserver.models.ifc4.IfcDoorStyleConstructionEnum * @see #getConstructionType() * @generated */ void setConstructionType(IfcDoorStyleConstructionEnum value); /** * Returns the value of the 'Parameter Takes Precedence' attribute. * The literals are from the enumeration {@link org.bimserver.models.ifc4.Tristate}. * *

* If the meaning of the 'Parameter Takes Precedence' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Parameter Takes Precedence' attribute. * @see org.bimserver.models.ifc4.Tristate * @see #setParameterTakesPrecedence(Tristate) * @see org.bimserver.models.ifc4.Ifc4Package#getIfcDoorStyle_ParameterTakesPrecedence() * @model * @generated */ Tristate getParameterTakesPrecedence(); /** * Sets the value of the '{@link org.bimserver.models.ifc4.IfcDoorStyle#getParameterTakesPrecedence Parameter Takes Precedence}' attribute. * * * @param value the new value of the 'Parameter Takes Precedence' attribute. * @see org.bimserver.models.ifc4.Tristate * @see #getParameterTakesPrecedence() * @generated */ void setParameterTakesPrecedence(Tristate value); /** * Returns the value of the 'Sizeable' attribute. * The literals are from the enumeration {@link org.bimserver.models.ifc4.Tristate}. * *

* If the meaning of the 'Sizeable' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Sizeable' attribute. * @see org.bimserver.models.ifc4.Tristate * @see #setSizeable(Tristate) * @see org.bimserver.models.ifc4.Ifc4Package#getIfcDoorStyle_Sizeable() * @model * @generated */ Tristate getSizeable(); /** * Sets the value of the '{@link org.bimserver.models.ifc4.IfcDoorStyle#getSizeable Sizeable}' attribute. * * * @param value the new value of the 'Sizeable' attribute. * @see org.bimserver.models.ifc4.Tristate * @see #getSizeable() * @generated */ void setSizeable(Tristate value); } // IfcDoorStyle




© 2015 - 2025 Weber Informatics LLC | Privacy Policy