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

org.bimserver.models.ifc4.IfcSurfaceTexture 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;

import org.eclipse.emf.common.util.EList;

/**
 * 
 * A representation of the model object 'Ifc Surface Texture'.
 * 
 *
 * 

* The following features are supported: *

*
    *
  • {@link org.bimserver.models.ifc4.IfcSurfaceTexture#getRepeatS Repeat S}
  • *
  • {@link org.bimserver.models.ifc4.IfcSurfaceTexture#getRepeatT Repeat T}
  • *
  • {@link org.bimserver.models.ifc4.IfcSurfaceTexture#getMode Mode}
  • *
  • {@link org.bimserver.models.ifc4.IfcSurfaceTexture#getTextureTransform Texture Transform}
  • *
  • {@link org.bimserver.models.ifc4.IfcSurfaceTexture#getParameter Parameter}
  • *
  • {@link org.bimserver.models.ifc4.IfcSurfaceTexture#getIsMappedBy Is Mapped By}
  • *
  • {@link org.bimserver.models.ifc4.IfcSurfaceTexture#getUsedInStyles Used In Styles}
  • *
* * @see org.bimserver.models.ifc4.Ifc4Package#getIfcSurfaceTexture() * @model * @generated */ public interface IfcSurfaceTexture extends IfcPresentationItem { /** * Returns the value of the 'Repeat S' attribute. * The literals are from the enumeration {@link org.bimserver.models.ifc4.Tristate}. * *

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

* * @return the value of the 'Repeat S' attribute. * @see org.bimserver.models.ifc4.Tristate * @see #setRepeatS(Tristate) * @see org.bimserver.models.ifc4.Ifc4Package#getIfcSurfaceTexture_RepeatS() * @model * @generated */ Tristate getRepeatS(); /** * Sets the value of the '{@link org.bimserver.models.ifc4.IfcSurfaceTexture#getRepeatS Repeat S}' attribute. * * * @param value the new value of the 'Repeat S' attribute. * @see org.bimserver.models.ifc4.Tristate * @see #getRepeatS() * @generated */ void setRepeatS(Tristate value); /** * Returns the value of the 'Repeat T' attribute. * The literals are from the enumeration {@link org.bimserver.models.ifc4.Tristate}. * *

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

* * @return the value of the 'Repeat T' attribute. * @see org.bimserver.models.ifc4.Tristate * @see #setRepeatT(Tristate) * @see org.bimserver.models.ifc4.Ifc4Package#getIfcSurfaceTexture_RepeatT() * @model * @generated */ Tristate getRepeatT(); /** * Sets the value of the '{@link org.bimserver.models.ifc4.IfcSurfaceTexture#getRepeatT Repeat T}' attribute. * * * @param value the new value of the 'Repeat T' attribute. * @see org.bimserver.models.ifc4.Tristate * @see #getRepeatT() * @generated */ void setRepeatT(Tristate value); /** * Returns the value of the 'Mode' attribute. * *

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

* * @return the value of the 'Mode' attribute. * @see #isSetMode() * @see #unsetMode() * @see #setMode(String) * @see org.bimserver.models.ifc4.Ifc4Package#getIfcSurfaceTexture_Mode() * @model unsettable="true" * @generated */ String getMode(); /** * Sets the value of the '{@link org.bimserver.models.ifc4.IfcSurfaceTexture#getMode Mode}' attribute. * * * @param value the new value of the 'Mode' attribute. * @see #isSetMode() * @see #unsetMode() * @see #getMode() * @generated */ void setMode(String value); /** * Unsets the value of the '{@link org.bimserver.models.ifc4.IfcSurfaceTexture#getMode Mode}' attribute. * * * @see #isSetMode() * @see #getMode() * @see #setMode(String) * @generated */ void unsetMode(); /** * Returns whether the value of the '{@link org.bimserver.models.ifc4.IfcSurfaceTexture#getMode Mode}' attribute is set. * * * @return whether the value of the 'Mode' attribute is set. * @see #unsetMode() * @see #getMode() * @see #setMode(String) * @generated */ boolean isSetMode(); /** * Returns the value of the 'Texture Transform' reference. * *

* If the meaning of the 'Texture Transform' reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Texture Transform' reference. * @see #isSetTextureTransform() * @see #unsetTextureTransform() * @see #setTextureTransform(IfcCartesianTransformationOperator2D) * @see org.bimserver.models.ifc4.Ifc4Package#getIfcSurfaceTexture_TextureTransform() * @model unsettable="true" * @generated */ IfcCartesianTransformationOperator2D getTextureTransform(); /** * Sets the value of the '{@link org.bimserver.models.ifc4.IfcSurfaceTexture#getTextureTransform Texture Transform}' reference. * * * @param value the new value of the 'Texture Transform' reference. * @see #isSetTextureTransform() * @see #unsetTextureTransform() * @see #getTextureTransform() * @generated */ void setTextureTransform(IfcCartesianTransformationOperator2D value); /** * Unsets the value of the '{@link org.bimserver.models.ifc4.IfcSurfaceTexture#getTextureTransform Texture Transform}' reference. * * * @see #isSetTextureTransform() * @see #getTextureTransform() * @see #setTextureTransform(IfcCartesianTransformationOperator2D) * @generated */ void unsetTextureTransform(); /** * Returns whether the value of the '{@link org.bimserver.models.ifc4.IfcSurfaceTexture#getTextureTransform Texture Transform}' reference is set. * * * @return whether the value of the 'Texture Transform' reference is set. * @see #unsetTextureTransform() * @see #getTextureTransform() * @see #setTextureTransform(IfcCartesianTransformationOperator2D) * @generated */ boolean isSetTextureTransform(); /** * Returns the value of the 'Parameter' attribute list. * The list contents are of type {@link java.lang.String}. * *

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

* * @return the value of the 'Parameter' attribute list. * @see #isSetParameter() * @see #unsetParameter() * @see org.bimserver.models.ifc4.Ifc4Package#getIfcSurfaceTexture_Parameter() * @model unique="false" unsettable="true" * @generated */ EList getParameter(); /** * Unsets the value of the '{@link org.bimserver.models.ifc4.IfcSurfaceTexture#getParameter Parameter}' attribute list. * * * @see #isSetParameter() * @see #getParameter() * @generated */ void unsetParameter(); /** * Returns whether the value of the '{@link org.bimserver.models.ifc4.IfcSurfaceTexture#getParameter Parameter}' attribute list is set. * * * @return whether the value of the 'Parameter' attribute list is set. * @see #unsetParameter() * @see #getParameter() * @generated */ boolean isSetParameter(); /** * Returns the value of the 'Is Mapped By' reference list. * The list contents are of type {@link org.bimserver.models.ifc4.IfcTextureCoordinate}. * It is bidirectional and its opposite is '{@link org.bimserver.models.ifc4.IfcTextureCoordinate#getMaps Maps}'. * *

* If the meaning of the 'Is Mapped By' reference list isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Is Mapped By' reference list. * @see #isSetIsMappedBy() * @see #unsetIsMappedBy() * @see org.bimserver.models.ifc4.Ifc4Package#getIfcSurfaceTexture_IsMappedBy() * @see org.bimserver.models.ifc4.IfcTextureCoordinate#getMaps * @model opposite="Maps" unsettable="true" * @generated */ EList getIsMappedBy(); /** * Unsets the value of the '{@link org.bimserver.models.ifc4.IfcSurfaceTexture#getIsMappedBy Is Mapped By}' reference list. * * * @see #isSetIsMappedBy() * @see #getIsMappedBy() * @generated */ void unsetIsMappedBy(); /** * Returns whether the value of the '{@link org.bimserver.models.ifc4.IfcSurfaceTexture#getIsMappedBy Is Mapped By}' reference list is set. * * * @return whether the value of the 'Is Mapped By' reference list is set. * @see #unsetIsMappedBy() * @see #getIsMappedBy() * @generated */ boolean isSetIsMappedBy(); /** * Returns the value of the 'Used In Styles' reference list. * The list contents are of type {@link org.bimserver.models.ifc4.IfcSurfaceStyleWithTextures}. * It is bidirectional and its opposite is '{@link org.bimserver.models.ifc4.IfcSurfaceStyleWithTextures#getTextures Textures}'. * *

* If the meaning of the 'Used In Styles' reference list isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Used In Styles' reference list. * @see #isSetUsedInStyles() * @see #unsetUsedInStyles() * @see org.bimserver.models.ifc4.Ifc4Package#getIfcSurfaceTexture_UsedInStyles() * @see org.bimserver.models.ifc4.IfcSurfaceStyleWithTextures#getTextures * @model opposite="Textures" unsettable="true" * @generated */ EList getUsedInStyles(); /** * Unsets the value of the '{@link org.bimserver.models.ifc4.IfcSurfaceTexture#getUsedInStyles Used In Styles}' reference list. * * * @see #isSetUsedInStyles() * @see #getUsedInStyles() * @generated */ void unsetUsedInStyles(); /** * Returns whether the value of the '{@link org.bimserver.models.ifc4.IfcSurfaceTexture#getUsedInStyles Used In Styles}' reference list is set. * * * @return whether the value of the 'Used In Styles' reference list is set. * @see #unsetUsedInStyles() * @see #getUsedInStyles() * @generated */ boolean isSetUsedInStyles(); } // IfcSurfaceTexture




© 2015 - 2024 Weber Informatics LLC | Privacy Policy