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

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

Go to download

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

The 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 Indexed Colour Map'.
 * 
 *
 * 

* The following features are supported: *

*
    *
  • {@link org.bimserver.models.ifc4.IfcIndexedColourMap#getMappedTo Mapped To}
  • *
  • {@link org.bimserver.models.ifc4.IfcIndexedColourMap#getOverrides Overrides}
  • *
  • {@link org.bimserver.models.ifc4.IfcIndexedColourMap#getColours Colours}
  • *
  • {@link org.bimserver.models.ifc4.IfcIndexedColourMap#getColourIndex Colour Index}
  • *
* * @see org.bimserver.models.ifc4.Ifc4Package#getIfcIndexedColourMap() * @model * @generated */ public interface IfcIndexedColourMap extends IfcPresentationItem { /** * Returns the value of the 'Mapped To' reference. * It is bidirectional and its opposite is '{@link org.bimserver.models.ifc4.IfcTessellatedFaceSet#getHasColours Has Colours}'. * *

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

* * @return the value of the 'Mapped To' reference. * @see #setMappedTo(IfcTessellatedFaceSet) * @see org.bimserver.models.ifc4.Ifc4Package#getIfcIndexedColourMap_MappedTo() * @see org.bimserver.models.ifc4.IfcTessellatedFaceSet#getHasColours * @model opposite="HasColours" * @generated */ IfcTessellatedFaceSet getMappedTo(); /** * Sets the value of the '{@link org.bimserver.models.ifc4.IfcIndexedColourMap#getMappedTo Mapped To}' reference. * * * @param value the new value of the 'Mapped To' reference. * @see #getMappedTo() * @generated */ void setMappedTo(IfcTessellatedFaceSet value); /** * Returns the value of the 'Overrides' reference. * *

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

* * @return the value of the 'Overrides' reference. * @see #isSetOverrides() * @see #unsetOverrides() * @see #setOverrides(IfcSurfaceStyleShading) * @see org.bimserver.models.ifc4.Ifc4Package#getIfcIndexedColourMap_Overrides() * @model unsettable="true" * @generated */ IfcSurfaceStyleShading getOverrides(); /** * Sets the value of the '{@link org.bimserver.models.ifc4.IfcIndexedColourMap#getOverrides Overrides}' reference. * * * @param value the new value of the 'Overrides' reference. * @see #isSetOverrides() * @see #unsetOverrides() * @see #getOverrides() * @generated */ void setOverrides(IfcSurfaceStyleShading value); /** * Unsets the value of the '{@link org.bimserver.models.ifc4.IfcIndexedColourMap#getOverrides Overrides}' reference. * * * @see #isSetOverrides() * @see #getOverrides() * @see #setOverrides(IfcSurfaceStyleShading) * @generated */ void unsetOverrides(); /** * Returns whether the value of the '{@link org.bimserver.models.ifc4.IfcIndexedColourMap#getOverrides Overrides}' reference is set. * * * @return whether the value of the 'Overrides' reference is set. * @see #unsetOverrides() * @see #getOverrides() * @see #setOverrides(IfcSurfaceStyleShading) * @generated */ boolean isSetOverrides(); /** * Returns the value of the 'Colours' reference. * *

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

* * @return the value of the 'Colours' reference. * @see #setColours(IfcColourRgbList) * @see org.bimserver.models.ifc4.Ifc4Package#getIfcIndexedColourMap_Colours() * @model * @generated */ IfcColourRgbList getColours(); /** * Sets the value of the '{@link org.bimserver.models.ifc4.IfcIndexedColourMap#getColours Colours}' reference. * * * @param value the new value of the 'Colours' reference. * @see #getColours() * @generated */ void setColours(IfcColourRgbList value); /** * Returns the value of the 'Colour Index' attribute list. * The list contents are of type {@link java.lang.Integer}. * *

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

* * @return the value of the 'Colour Index' attribute list. * @see org.bimserver.models.ifc4.Ifc4Package#getIfcIndexedColourMap_ColourIndex() * @model unique="false" * @generated */ EList getColourIndex(); } // IfcIndexedColourMap




© 2015 - 2024 Weber Informatics LLC | Privacy Policy