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

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

/**
 * 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 Planar Extent'.
 * 
 *
 * 

* The following features are supported: *

*
    *
  • {@link org.bimserver.models.ifc4.IfcPlanarExtent#getSizeInX Size In X}
  • *
  • {@link org.bimserver.models.ifc4.IfcPlanarExtent#getSizeInXAsString Size In XAs String}
  • *
  • {@link org.bimserver.models.ifc4.IfcPlanarExtent#getSizeInY Size In Y}
  • *
  • {@link org.bimserver.models.ifc4.IfcPlanarExtent#getSizeInYAsString Size In YAs String}
  • *
* * @see org.bimserver.models.ifc4.Ifc4Package#getIfcPlanarExtent() * @model * @generated */ public interface IfcPlanarExtent extends IfcGeometricRepresentationItem { /** * Returns the value of the 'Size In X' attribute. * *

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

* * @return the value of the 'Size In X' attribute. * @see #setSizeInX(double) * @see org.bimserver.models.ifc4.Ifc4Package#getIfcPlanarExtent_SizeInX() * @model * @generated */ double getSizeInX(); /** * Sets the value of the '{@link org.bimserver.models.ifc4.IfcPlanarExtent#getSizeInX Size In X}' attribute. * * * @param value the new value of the 'Size In X' attribute. * @see #getSizeInX() * @generated */ void setSizeInX(double value); /** * Returns the value of the 'Size In XAs String' attribute. * *

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

* * @return the value of the 'Size In XAs String' attribute. * @see #setSizeInXAsString(String) * @see org.bimserver.models.ifc4.Ifc4Package#getIfcPlanarExtent_SizeInXAsString() * @model * @generated */ String getSizeInXAsString(); /** * Sets the value of the '{@link org.bimserver.models.ifc4.IfcPlanarExtent#getSizeInXAsString Size In XAs String}' attribute. * * * @param value the new value of the 'Size In XAs String' attribute. * @see #getSizeInXAsString() * @generated */ void setSizeInXAsString(String value); /** * Returns the value of the 'Size In Y' attribute. * *

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

* * @return the value of the 'Size In Y' attribute. * @see #setSizeInY(double) * @see org.bimserver.models.ifc4.Ifc4Package#getIfcPlanarExtent_SizeInY() * @model * @generated */ double getSizeInY(); /** * Sets the value of the '{@link org.bimserver.models.ifc4.IfcPlanarExtent#getSizeInY Size In Y}' attribute. * * * @param value the new value of the 'Size In Y' attribute. * @see #getSizeInY() * @generated */ void setSizeInY(double value); /** * Returns the value of the 'Size In YAs String' attribute. * *

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

* * @return the value of the 'Size In YAs String' attribute. * @see #setSizeInYAsString(String) * @see org.bimserver.models.ifc4.Ifc4Package#getIfcPlanarExtent_SizeInYAsString() * @model * @generated */ String getSizeInYAsString(); /** * Sets the value of the '{@link org.bimserver.models.ifc4.IfcPlanarExtent#getSizeInYAsString Size In YAs String}' attribute. * * * @param value the new value of the 'Size In YAs String' attribute. * @see #getSizeInYAsString() * @generated */ void setSizeInYAsString(String value); } // IfcPlanarExtent




© 2015 - 2024 Weber Informatics LLC | Privacy Policy