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

org.bimserver.models.ifc4.IfcQuantityCount 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 Quantity Count'.
 * 
 *
 * 

* The following features are supported: *

*
    *
  • {@link org.bimserver.models.ifc4.IfcQuantityCount#getCountValue Count Value}
  • *
  • {@link org.bimserver.models.ifc4.IfcQuantityCount#getCountValueAsString Count Value As String}
  • *
  • {@link org.bimserver.models.ifc4.IfcQuantityCount#getFormula Formula}
  • *
* * @see org.bimserver.models.ifc4.Ifc4Package#getIfcQuantityCount() * @model * @generated */ public interface IfcQuantityCount extends IfcPhysicalSimpleQuantity { /** * Returns the value of the 'Count Value' attribute. * *

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

* * @return the value of the 'Count Value' attribute. * @see #setCountValue(double) * @see org.bimserver.models.ifc4.Ifc4Package#getIfcQuantityCount_CountValue() * @model * @generated */ double getCountValue(); /** * Sets the value of the '{@link org.bimserver.models.ifc4.IfcQuantityCount#getCountValue Count Value}' attribute. * * * @param value the new value of the 'Count Value' attribute. * @see #getCountValue() * @generated */ void setCountValue(double value); /** * Returns the value of the 'Count Value As String' attribute. * *

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

* * @return the value of the 'Count Value As String' attribute. * @see #setCountValueAsString(String) * @see org.bimserver.models.ifc4.Ifc4Package#getIfcQuantityCount_CountValueAsString() * @model * @generated */ String getCountValueAsString(); /** * Sets the value of the '{@link org.bimserver.models.ifc4.IfcQuantityCount#getCountValueAsString Count Value As String}' attribute. * * * @param value the new value of the 'Count Value As String' attribute. * @see #getCountValueAsString() * @generated */ void setCountValueAsString(String value); /** * Returns the value of the 'Formula' attribute. * *

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

* * @return the value of the 'Formula' attribute. * @see #isSetFormula() * @see #unsetFormula() * @see #setFormula(String) * @see org.bimserver.models.ifc4.Ifc4Package#getIfcQuantityCount_Formula() * @model unsettable="true" * @generated */ String getFormula(); /** * Sets the value of the '{@link org.bimserver.models.ifc4.IfcQuantityCount#getFormula Formula}' attribute. * * * @param value the new value of the 'Formula' attribute. * @see #isSetFormula() * @see #unsetFormula() * @see #getFormula() * @generated */ void setFormula(String value); /** * Unsets the value of the '{@link org.bimserver.models.ifc4.IfcQuantityCount#getFormula Formula}' attribute. * * * @see #isSetFormula() * @see #getFormula() * @see #setFormula(String) * @generated */ void unsetFormula(); /** * Returns whether the value of the '{@link org.bimserver.models.ifc4.IfcQuantityCount#getFormula Formula}' attribute is set. * * * @return whether the value of the 'Formula' attribute is set. * @see #unsetFormula() * @see #getFormula() * @see #setFormula(String) * @generated */ boolean isSetFormula(); } // IfcQuantityCount




© 2015 - 2024 Weber Informatics LLC | Privacy Policy