
org.bimserver.models.ifc4.IfcRelInterferesElements 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 Rel Interferes Elements'.
*
*
*
* The following features are supported:
*
*
* - {@link org.bimserver.models.ifc4.IfcRelInterferesElements#getRelatingElement Relating Element}
* - {@link org.bimserver.models.ifc4.IfcRelInterferesElements#getRelatedElement Related Element}
* - {@link org.bimserver.models.ifc4.IfcRelInterferesElements#getInterferenceGeometry Interference Geometry}
* - {@link org.bimserver.models.ifc4.IfcRelInterferesElements#getInterferenceType Interference Type}
* - {@link org.bimserver.models.ifc4.IfcRelInterferesElements#isImpliedOrder Implied Order}
*
*
* @see org.bimserver.models.ifc4.Ifc4Package#getIfcRelInterferesElements()
* @model
* @generated
*/
public interface IfcRelInterferesElements extends IfcRelConnects {
/**
* Returns the value of the 'Relating Element' reference.
* It is bidirectional and its opposite is '{@link org.bimserver.models.ifc4.IfcElement#getInterferesElements Interferes Elements}'.
*
*
* If the meaning of the 'Relating Element' reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Relating Element' reference.
* @see #setRelatingElement(IfcElement)
* @see org.bimserver.models.ifc4.Ifc4Package#getIfcRelInterferesElements_RelatingElement()
* @see org.bimserver.models.ifc4.IfcElement#getInterferesElements
* @model opposite="InterferesElements"
* @generated
*/
IfcElement getRelatingElement();
/**
* Sets the value of the '{@link org.bimserver.models.ifc4.IfcRelInterferesElements#getRelatingElement Relating Element}' reference.
*
*
* @param value the new value of the 'Relating Element' reference.
* @see #getRelatingElement()
* @generated
*/
void setRelatingElement(IfcElement value);
/**
* Returns the value of the 'Related Element' reference.
* It is bidirectional and its opposite is '{@link org.bimserver.models.ifc4.IfcElement#getIsInterferedByElements Is Interfered By Elements}'.
*
*
* If the meaning of the 'Related Element' reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Related Element' reference.
* @see #setRelatedElement(IfcElement)
* @see org.bimserver.models.ifc4.Ifc4Package#getIfcRelInterferesElements_RelatedElement()
* @see org.bimserver.models.ifc4.IfcElement#getIsInterferedByElements
* @model opposite="IsInterferedByElements"
* @generated
*/
IfcElement getRelatedElement();
/**
* Sets the value of the '{@link org.bimserver.models.ifc4.IfcRelInterferesElements#getRelatedElement Related Element}' reference.
*
*
* @param value the new value of the 'Related Element' reference.
* @see #getRelatedElement()
* @generated
*/
void setRelatedElement(IfcElement value);
/**
* Returns the value of the 'Interference Geometry' reference.
*
*
* If the meaning of the 'Interference Geometry' reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Interference Geometry' reference.
* @see #isSetInterferenceGeometry()
* @see #unsetInterferenceGeometry()
* @see #setInterferenceGeometry(IfcConnectionGeometry)
* @see org.bimserver.models.ifc4.Ifc4Package#getIfcRelInterferesElements_InterferenceGeometry()
* @model unsettable="true"
* @generated
*/
IfcConnectionGeometry getInterferenceGeometry();
/**
* Sets the value of the '{@link org.bimserver.models.ifc4.IfcRelInterferesElements#getInterferenceGeometry Interference Geometry}' reference.
*
*
* @param value the new value of the 'Interference Geometry' reference.
* @see #isSetInterferenceGeometry()
* @see #unsetInterferenceGeometry()
* @see #getInterferenceGeometry()
* @generated
*/
void setInterferenceGeometry(IfcConnectionGeometry value);
/**
* Unsets the value of the '{@link org.bimserver.models.ifc4.IfcRelInterferesElements#getInterferenceGeometry Interference Geometry}' reference.
*
*
* @see #isSetInterferenceGeometry()
* @see #getInterferenceGeometry()
* @see #setInterferenceGeometry(IfcConnectionGeometry)
* @generated
*/
void unsetInterferenceGeometry();
/**
* Returns whether the value of the '{@link org.bimserver.models.ifc4.IfcRelInterferesElements#getInterferenceGeometry Interference Geometry}' reference is set.
*
*
* @return whether the value of the 'Interference Geometry' reference is set.
* @see #unsetInterferenceGeometry()
* @see #getInterferenceGeometry()
* @see #setInterferenceGeometry(IfcConnectionGeometry)
* @generated
*/
boolean isSetInterferenceGeometry();
/**
* Returns the value of the 'Interference Type' attribute.
*
*
* If the meaning of the 'Interference Type' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Interference Type' attribute.
* @see #isSetInterferenceType()
* @see #unsetInterferenceType()
* @see #setInterferenceType(String)
* @see org.bimserver.models.ifc4.Ifc4Package#getIfcRelInterferesElements_InterferenceType()
* @model unsettable="true"
* @generated
*/
String getInterferenceType();
/**
* Sets the value of the '{@link org.bimserver.models.ifc4.IfcRelInterferesElements#getInterferenceType Interference Type}' attribute.
*
*
* @param value the new value of the 'Interference Type' attribute.
* @see #isSetInterferenceType()
* @see #unsetInterferenceType()
* @see #getInterferenceType()
* @generated
*/
void setInterferenceType(String value);
/**
* Unsets the value of the '{@link org.bimserver.models.ifc4.IfcRelInterferesElements#getInterferenceType Interference Type}' attribute.
*
*
* @see #isSetInterferenceType()
* @see #getInterferenceType()
* @see #setInterferenceType(String)
* @generated
*/
void unsetInterferenceType();
/**
* Returns whether the value of the '{@link org.bimserver.models.ifc4.IfcRelInterferesElements#getInterferenceType Interference Type}' attribute is set.
*
*
* @return whether the value of the 'Interference Type' attribute is set.
* @see #unsetInterferenceType()
* @see #getInterferenceType()
* @see #setInterferenceType(String)
* @generated
*/
boolean isSetInterferenceType();
/**
* Returns the value of the 'Implied Order' attribute.
*
*
* If the meaning of the 'Implied Order' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Implied Order' attribute.
* @see #setImpliedOrder(boolean)
* @see org.bimserver.models.ifc4.Ifc4Package#getIfcRelInterferesElements_ImpliedOrder()
* @model
* @generated
*/
boolean isImpliedOrder();
/**
* Sets the value of the '{@link org.bimserver.models.ifc4.IfcRelInterferesElements#isImpliedOrder Implied Order}' attribute.
*
*
* @param value the new value of the 'Implied Order' attribute.
* @see #isImpliedOrder()
* @generated
*/
void setImpliedOrder(boolean value);
} // IfcRelInterferesElements
© 2015 - 2025 Weber Informatics LLC | Privacy Policy