
org.bimserver.models.ifc4.IfcQuantityTime Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of PluginBase Show documentation
Show all versions of PluginBase Show documentation
Base project for BIMserver plugin development. Some plugins mights also need the Shared library
/**
* 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 Time'.
*
*
*
* The following features are supported:
*
*
* - {@link org.bimserver.models.ifc4.IfcQuantityTime#getTimeValue Time Value}
* - {@link org.bimserver.models.ifc4.IfcQuantityTime#getTimeValueAsString Time Value As String}
* - {@link org.bimserver.models.ifc4.IfcQuantityTime#getFormula Formula}
*
*
* @see org.bimserver.models.ifc4.Ifc4Package#getIfcQuantityTime()
* @model
* @generated
*/
public interface IfcQuantityTime extends IfcPhysicalSimpleQuantity {
/**
* Returns the value of the 'Time Value' attribute.
*
*
* If the meaning of the 'Time Value' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Time Value' attribute.
* @see #setTimeValue(double)
* @see org.bimserver.models.ifc4.Ifc4Package#getIfcQuantityTime_TimeValue()
* @model
* @generated
*/
double getTimeValue();
/**
* Sets the value of the '{@link org.bimserver.models.ifc4.IfcQuantityTime#getTimeValue Time Value}' attribute.
*
*
* @param value the new value of the 'Time Value' attribute.
* @see #getTimeValue()
* @generated
*/
void setTimeValue(double value);
/**
* Returns the value of the 'Time Value As String' attribute.
*
*
* If the meaning of the 'Time Value As String' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Time Value As String' attribute.
* @see #setTimeValueAsString(String)
* @see org.bimserver.models.ifc4.Ifc4Package#getIfcQuantityTime_TimeValueAsString()
* @model
* @generated
*/
String getTimeValueAsString();
/**
* Sets the value of the '{@link org.bimserver.models.ifc4.IfcQuantityTime#getTimeValueAsString Time Value As String}' attribute.
*
*
* @param value the new value of the 'Time Value As String' attribute.
* @see #getTimeValueAsString()
* @generated
*/
void setTimeValueAsString(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#getIfcQuantityTime_Formula()
* @model unsettable="true"
* @generated
*/
String getFormula();
/**
* Sets the value of the '{@link org.bimserver.models.ifc4.IfcQuantityTime#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.IfcQuantityTime#getFormula Formula}' attribute.
*
*
* @see #isSetFormula()
* @see #getFormula()
* @see #setFormula(String)
* @generated
*/
void unsetFormula();
/**
* Returns whether the value of the '{@link org.bimserver.models.ifc4.IfcQuantityTime#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();
} // IfcQuantityTime
© 2015 - 2025 Weber Informatics LLC | Privacy Policy