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

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

Go to download

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

There is a newer version: 2.0.0
Show 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 Quantity Weight'.
 * 
 *
 * 

* The following features are supported: *

*
    *
  • {@link org.bimserver.models.ifc4.IfcQuantityWeight#getWeightValue Weight Value}
  • *
  • {@link org.bimserver.models.ifc4.IfcQuantityWeight#getWeightValueAsString Weight Value As String}
  • *
  • {@link org.bimserver.models.ifc4.IfcQuantityWeight#getFormula Formula}
  • *
* * @see org.bimserver.models.ifc4.Ifc4Package#getIfcQuantityWeight() * @model * @generated */ public interface IfcQuantityWeight extends IfcPhysicalSimpleQuantity { /** * Returns the value of the 'Weight Value' attribute. * *

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

* * @return the value of the 'Weight Value' attribute. * @see #setWeightValue(double) * @see org.bimserver.models.ifc4.Ifc4Package#getIfcQuantityWeight_WeightValue() * @model * @generated */ double getWeightValue(); /** * Sets the value of the '{@link org.bimserver.models.ifc4.IfcQuantityWeight#getWeightValue Weight Value}' attribute. * * * @param value the new value of the 'Weight Value' attribute. * @see #getWeightValue() * @generated */ void setWeightValue(double value); /** * Returns the value of the 'Weight Value As String' attribute. * *

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

* * @return the value of the 'Weight Value As String' attribute. * @see #setWeightValueAsString(String) * @see org.bimserver.models.ifc4.Ifc4Package#getIfcQuantityWeight_WeightValueAsString() * @model * @generated */ String getWeightValueAsString(); /** * Sets the value of the '{@link org.bimserver.models.ifc4.IfcQuantityWeight#getWeightValueAsString Weight Value As String}' attribute. * * * @param value the new value of the 'Weight Value As String' attribute. * @see #getWeightValueAsString() * @generated */ void setWeightValueAsString(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#getIfcQuantityWeight_Formula() * @model unsettable="true" * @generated */ String getFormula(); /** * Sets the value of the '{@link org.bimserver.models.ifc4.IfcQuantityWeight#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.IfcQuantityWeight#getFormula Formula}' attribute. * * * @see #isSetFormula() * @see #getFormula() * @see #setFormula(String) * @generated */ void unsetFormula(); /** * Returns whether the value of the '{@link org.bimserver.models.ifc4.IfcQuantityWeight#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(); } // IfcQuantityWeight




© 2015 - 2024 Weber Informatics LLC | Privacy Policy