
org.bimserver.models.ifc4.impl.IfcRectangularPyramidImpl 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.impl;
import org.bimserver.models.ifc4.Ifc4Package;
import org.bimserver.models.ifc4.IfcRectangularPyramid;
import org.eclipse.emf.ecore.EClass;
/**
*
* An implementation of the model object 'Ifc Rectangular Pyramid'.
*
*
* The following features are implemented:
*
*
* - {@link org.bimserver.models.ifc4.impl.IfcRectangularPyramidImpl#getXLength XLength}
* - {@link org.bimserver.models.ifc4.impl.IfcRectangularPyramidImpl#getXLengthAsString XLength As String}
* - {@link org.bimserver.models.ifc4.impl.IfcRectangularPyramidImpl#getYLength YLength}
* - {@link org.bimserver.models.ifc4.impl.IfcRectangularPyramidImpl#getYLengthAsString YLength As String}
* - {@link org.bimserver.models.ifc4.impl.IfcRectangularPyramidImpl#getHeight Height}
* - {@link org.bimserver.models.ifc4.impl.IfcRectangularPyramidImpl#getHeightAsString Height As String}
*
*
* @generated
*/
public class IfcRectangularPyramidImpl extends IfcCsgPrimitive3DImpl implements IfcRectangularPyramid {
/**
*
*
* @generated
*/
protected IfcRectangularPyramidImpl() {
super();
}
/**
*
*
* @generated
*/
@Override
protected EClass eStaticClass() {
return Ifc4Package.Literals.IFC_RECTANGULAR_PYRAMID;
}
/**
*
*
* @generated
*/
public double getXLength() {
return (Double) eGet(Ifc4Package.Literals.IFC_RECTANGULAR_PYRAMID__XLENGTH, true);
}
/**
*
*
* @generated
*/
public void setXLength(double newXLength) {
eSet(Ifc4Package.Literals.IFC_RECTANGULAR_PYRAMID__XLENGTH, newXLength);
}
/**
*
*
* @generated
*/
public String getXLengthAsString() {
return (String) eGet(Ifc4Package.Literals.IFC_RECTANGULAR_PYRAMID__XLENGTH_AS_STRING, true);
}
/**
*
*
* @generated
*/
public void setXLengthAsString(String newXLengthAsString) {
eSet(Ifc4Package.Literals.IFC_RECTANGULAR_PYRAMID__XLENGTH_AS_STRING, newXLengthAsString);
}
/**
*
*
* @generated
*/
public double getYLength() {
return (Double) eGet(Ifc4Package.Literals.IFC_RECTANGULAR_PYRAMID__YLENGTH, true);
}
/**
*
*
* @generated
*/
public void setYLength(double newYLength) {
eSet(Ifc4Package.Literals.IFC_RECTANGULAR_PYRAMID__YLENGTH, newYLength);
}
/**
*
*
* @generated
*/
public String getYLengthAsString() {
return (String) eGet(Ifc4Package.Literals.IFC_RECTANGULAR_PYRAMID__YLENGTH_AS_STRING, true);
}
/**
*
*
* @generated
*/
public void setYLengthAsString(String newYLengthAsString) {
eSet(Ifc4Package.Literals.IFC_RECTANGULAR_PYRAMID__YLENGTH_AS_STRING, newYLengthAsString);
}
/**
*
*
* @generated
*/
public double getHeight() {
return (Double) eGet(Ifc4Package.Literals.IFC_RECTANGULAR_PYRAMID__HEIGHT, true);
}
/**
*
*
* @generated
*/
public void setHeight(double newHeight) {
eSet(Ifc4Package.Literals.IFC_RECTANGULAR_PYRAMID__HEIGHT, newHeight);
}
/**
*
*
* @generated
*/
public String getHeightAsString() {
return (String) eGet(Ifc4Package.Literals.IFC_RECTANGULAR_PYRAMID__HEIGHT_AS_STRING, true);
}
/**
*
*
* @generated
*/
public void setHeightAsString(String newHeightAsString) {
eSet(Ifc4Package.Literals.IFC_RECTANGULAR_PYRAMID__HEIGHT_AS_STRING, newHeightAsString);
}
} //IfcRectangularPyramidImpl
© 2015 - 2025 Weber Informatics LLC | Privacy Policy