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

org.bimserver.models.ifc4.IfcRightCircularCone 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 Right Circular Cone'.
 * 
 *
 * 

* The following features are supported: *

*
    *
  • {@link org.bimserver.models.ifc4.IfcRightCircularCone#getHeight Height}
  • *
  • {@link org.bimserver.models.ifc4.IfcRightCircularCone#getHeightAsString Height As String}
  • *
  • {@link org.bimserver.models.ifc4.IfcRightCircularCone#getBottomRadius Bottom Radius}
  • *
  • {@link org.bimserver.models.ifc4.IfcRightCircularCone#getBottomRadiusAsString Bottom Radius As String}
  • *
* * @see org.bimserver.models.ifc4.Ifc4Package#getIfcRightCircularCone() * @model * @generated */ public interface IfcRightCircularCone extends IfcCsgPrimitive3D { /** * Returns the value of the 'Height' attribute. * *

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

* * @return the value of the 'Height' attribute. * @see #setHeight(double) * @see org.bimserver.models.ifc4.Ifc4Package#getIfcRightCircularCone_Height() * @model * @generated */ double getHeight(); /** * Sets the value of the '{@link org.bimserver.models.ifc4.IfcRightCircularCone#getHeight Height}' attribute. * * * @param value the new value of the 'Height' attribute. * @see #getHeight() * @generated */ void setHeight(double value); /** * Returns the value of the 'Height As String' attribute. * *

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

* * @return the value of the 'Height As String' attribute. * @see #setHeightAsString(String) * @see org.bimserver.models.ifc4.Ifc4Package#getIfcRightCircularCone_HeightAsString() * @model * @generated */ String getHeightAsString(); /** * Sets the value of the '{@link org.bimserver.models.ifc4.IfcRightCircularCone#getHeightAsString Height As String}' attribute. * * * @param value the new value of the 'Height As String' attribute. * @see #getHeightAsString() * @generated */ void setHeightAsString(String value); /** * Returns the value of the 'Bottom Radius' attribute. * *

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

* * @return the value of the 'Bottom Radius' attribute. * @see #setBottomRadius(double) * @see org.bimserver.models.ifc4.Ifc4Package#getIfcRightCircularCone_BottomRadius() * @model * @generated */ double getBottomRadius(); /** * Sets the value of the '{@link org.bimserver.models.ifc4.IfcRightCircularCone#getBottomRadius Bottom Radius}' attribute. * * * @param value the new value of the 'Bottom Radius' attribute. * @see #getBottomRadius() * @generated */ void setBottomRadius(double value); /** * Returns the value of the 'Bottom Radius As String' attribute. * *

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

* * @return the value of the 'Bottom Radius As String' attribute. * @see #setBottomRadiusAsString(String) * @see org.bimserver.models.ifc4.Ifc4Package#getIfcRightCircularCone_BottomRadiusAsString() * @model * @generated */ String getBottomRadiusAsString(); /** * Sets the value of the '{@link org.bimserver.models.ifc4.IfcRightCircularCone#getBottomRadiusAsString Bottom Radius As String}' attribute. * * * @param value the new value of the 'Bottom Radius As String' attribute. * @see #getBottomRadiusAsString() * @generated */ void setBottomRadiusAsString(String value); } // IfcRightCircularCone




© 2015 - 2024 Weber Informatics LLC | Privacy Policy