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

org.bimserver.models.ifc2x3tc1.IfcProcedure 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.ifc2x3tc1;

/**
 * 
 * A representation of the model object 'Ifc Procedure'.
 * 
 *
 * 

* The following features are supported: *

*
    *
  • {@link org.bimserver.models.ifc2x3tc1.IfcProcedure#getProcedureID Procedure ID}
  • *
  • {@link org.bimserver.models.ifc2x3tc1.IfcProcedure#getProcedureType Procedure Type}
  • *
  • {@link org.bimserver.models.ifc2x3tc1.IfcProcedure#getUserDefinedProcedureType User Defined Procedure Type}
  • *
* * @see org.bimserver.models.ifc2x3tc1.Ifc2x3tc1Package#getIfcProcedure() * @model * @generated */ public interface IfcProcedure extends IfcProcess { /** * Returns the value of the 'Procedure ID' attribute. * *

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

* * @return the value of the 'Procedure ID' attribute. * @see #setProcedureID(String) * @see org.bimserver.models.ifc2x3tc1.Ifc2x3tc1Package#getIfcProcedure_ProcedureID() * @model * @generated */ String getProcedureID(); /** * Sets the value of the '{@link org.bimserver.models.ifc2x3tc1.IfcProcedure#getProcedureID Procedure ID}' attribute. * * * @param value the new value of the 'Procedure ID' attribute. * @see #getProcedureID() * @generated */ void setProcedureID(String value); /** * Returns the value of the 'Procedure Type' attribute. * The literals are from the enumeration {@link org.bimserver.models.ifc2x3tc1.IfcProcedureTypeEnum}. * *

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

* * @return the value of the 'Procedure Type' attribute. * @see org.bimserver.models.ifc2x3tc1.IfcProcedureTypeEnum * @see #setProcedureType(IfcProcedureTypeEnum) * @see org.bimserver.models.ifc2x3tc1.Ifc2x3tc1Package#getIfcProcedure_ProcedureType() * @model * @generated */ IfcProcedureTypeEnum getProcedureType(); /** * Sets the value of the '{@link org.bimserver.models.ifc2x3tc1.IfcProcedure#getProcedureType Procedure Type}' attribute. * * * @param value the new value of the 'Procedure Type' attribute. * @see org.bimserver.models.ifc2x3tc1.IfcProcedureTypeEnum * @see #getProcedureType() * @generated */ void setProcedureType(IfcProcedureTypeEnum value); /** * Returns the value of the 'User Defined Procedure Type' attribute. * *

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

* * @return the value of the 'User Defined Procedure Type' attribute. * @see #isSetUserDefinedProcedureType() * @see #unsetUserDefinedProcedureType() * @see #setUserDefinedProcedureType(String) * @see org.bimserver.models.ifc2x3tc1.Ifc2x3tc1Package#getIfcProcedure_UserDefinedProcedureType() * @model unsettable="true" * @generated */ String getUserDefinedProcedureType(); /** * Sets the value of the '{@link org.bimserver.models.ifc2x3tc1.IfcProcedure#getUserDefinedProcedureType User Defined Procedure Type}' attribute. * * * @param value the new value of the 'User Defined Procedure Type' attribute. * @see #isSetUserDefinedProcedureType() * @see #unsetUserDefinedProcedureType() * @see #getUserDefinedProcedureType() * @generated */ void setUserDefinedProcedureType(String value); /** * Unsets the value of the '{@link org.bimserver.models.ifc2x3tc1.IfcProcedure#getUserDefinedProcedureType User Defined Procedure Type}' attribute. * * * @see #isSetUserDefinedProcedureType() * @see #getUserDefinedProcedureType() * @see #setUserDefinedProcedureType(String) * @generated */ void unsetUserDefinedProcedureType(); /** * Returns whether the value of the '{@link org.bimserver.models.ifc2x3tc1.IfcProcedure#getUserDefinedProcedureType User Defined Procedure Type}' attribute is set. * * * @return whether the value of the 'User Defined Procedure Type' attribute is set. * @see #unsetUserDefinedProcedureType() * @see #getUserDefinedProcedureType() * @see #setUserDefinedProcedureType(String) * @generated */ boolean isSetUserDefinedProcedureType(); } // IfcProcedure




© 2015 - 2024 Weber Informatics LLC | Privacy Policy