org.bimserver.models.ifc4.IfcColourRgb Maven / Gradle / Ivy
Show all versions of pluginbase Show documentation
/**
* 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 Colour Rgb'.
*
*
*
* The following features are supported:
*
*
* - {@link org.bimserver.models.ifc4.IfcColourRgb#getRed Red}
* - {@link org.bimserver.models.ifc4.IfcColourRgb#getRedAsString Red As String}
* - {@link org.bimserver.models.ifc4.IfcColourRgb#getGreen Green}
* - {@link org.bimserver.models.ifc4.IfcColourRgb#getGreenAsString Green As String}
* - {@link org.bimserver.models.ifc4.IfcColourRgb#getBlue Blue}
* - {@link org.bimserver.models.ifc4.IfcColourRgb#getBlueAsString Blue As String}
*
*
* @see org.bimserver.models.ifc4.Ifc4Package#getIfcColourRgb()
* @model
* @generated
*/
public interface IfcColourRgb extends IfcColourSpecification, IfcColourOrFactor {
/**
* Returns the value of the 'Red' attribute.
*
*
* If the meaning of the 'Red' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Red' attribute.
* @see #setRed(double)
* @see org.bimserver.models.ifc4.Ifc4Package#getIfcColourRgb_Red()
* @model
* @generated
*/
double getRed();
/**
* Sets the value of the '{@link org.bimserver.models.ifc4.IfcColourRgb#getRed Red}' attribute.
*
*
* @param value the new value of the 'Red' attribute.
* @see #getRed()
* @generated
*/
void setRed(double value);
/**
* Returns the value of the 'Red As String' attribute.
*
*
* If the meaning of the 'Red As String' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Red As String' attribute.
* @see #setRedAsString(String)
* @see org.bimserver.models.ifc4.Ifc4Package#getIfcColourRgb_RedAsString()
* @model
* @generated
*/
String getRedAsString();
/**
* Sets the value of the '{@link org.bimserver.models.ifc4.IfcColourRgb#getRedAsString Red As String}' attribute.
*
*
* @param value the new value of the 'Red As String' attribute.
* @see #getRedAsString()
* @generated
*/
void setRedAsString(String value);
/**
* Returns the value of the 'Green' attribute.
*
*
* If the meaning of the 'Green' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Green' attribute.
* @see #setGreen(double)
* @see org.bimserver.models.ifc4.Ifc4Package#getIfcColourRgb_Green()
* @model
* @generated
*/
double getGreen();
/**
* Sets the value of the '{@link org.bimserver.models.ifc4.IfcColourRgb#getGreen Green}' attribute.
*
*
* @param value the new value of the 'Green' attribute.
* @see #getGreen()
* @generated
*/
void setGreen(double value);
/**
* Returns the value of the 'Green As String' attribute.
*
*
* If the meaning of the 'Green As String' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Green As String' attribute.
* @see #setGreenAsString(String)
* @see org.bimserver.models.ifc4.Ifc4Package#getIfcColourRgb_GreenAsString()
* @model
* @generated
*/
String getGreenAsString();
/**
* Sets the value of the '{@link org.bimserver.models.ifc4.IfcColourRgb#getGreenAsString Green As String}' attribute.
*
*
* @param value the new value of the 'Green As String' attribute.
* @see #getGreenAsString()
* @generated
*/
void setGreenAsString(String value);
/**
* Returns the value of the 'Blue' attribute.
*
*
* If the meaning of the 'Blue' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Blue' attribute.
* @see #setBlue(double)
* @see org.bimserver.models.ifc4.Ifc4Package#getIfcColourRgb_Blue()
* @model
* @generated
*/
double getBlue();
/**
* Sets the value of the '{@link org.bimserver.models.ifc4.IfcColourRgb#getBlue Blue}' attribute.
*
*
* @param value the new value of the 'Blue' attribute.
* @see #getBlue()
* @generated
*/
void setBlue(double value);
/**
* Returns the value of the 'Blue As String' attribute.
*
*
* If the meaning of the 'Blue As String' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Blue As String' attribute.
* @see #setBlueAsString(String)
* @see org.bimserver.models.ifc4.Ifc4Package#getIfcColourRgb_BlueAsString()
* @model
* @generated
*/
String getBlueAsString();
/**
* Sets the value of the '{@link org.bimserver.models.ifc4.IfcColourRgb#getBlueAsString Blue As String}' attribute.
*
*
* @param value the new value of the 'Blue As String' attribute.
* @see #getBlueAsString()
* @generated
*/
void setBlueAsString(String value);
} // IfcColourRgb