
org.bimserver.models.ifc4.impl.IfcBlockImpl 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.IfcBlock;
import org.eclipse.emf.ecore.EClass;
/**
*
* An implementation of the model object 'Ifc Block'.
*
*
* The following features are implemented:
*
*
* - {@link org.bimserver.models.ifc4.impl.IfcBlockImpl#getXLength XLength}
* - {@link org.bimserver.models.ifc4.impl.IfcBlockImpl#getXLengthAsString XLength As String}
* - {@link org.bimserver.models.ifc4.impl.IfcBlockImpl#getYLength YLength}
* - {@link org.bimserver.models.ifc4.impl.IfcBlockImpl#getYLengthAsString YLength As String}
* - {@link org.bimserver.models.ifc4.impl.IfcBlockImpl#getZLength ZLength}
* - {@link org.bimserver.models.ifc4.impl.IfcBlockImpl#getZLengthAsString ZLength As String}
*
*
* @generated
*/
public class IfcBlockImpl extends IfcCsgPrimitive3DImpl implements IfcBlock {
/**
*
*
* @generated
*/
protected IfcBlockImpl() {
super();
}
/**
*
*
* @generated
*/
@Override
protected EClass eStaticClass() {
return Ifc4Package.Literals.IFC_BLOCK;
}
/**
*
*
* @generated
*/
public double getXLength() {
return (Double) eGet(Ifc4Package.Literals.IFC_BLOCK__XLENGTH, true);
}
/**
*
*
* @generated
*/
public void setXLength(double newXLength) {
eSet(Ifc4Package.Literals.IFC_BLOCK__XLENGTH, newXLength);
}
/**
*
*
* @generated
*/
public String getXLengthAsString() {
return (String) eGet(Ifc4Package.Literals.IFC_BLOCK__XLENGTH_AS_STRING, true);
}
/**
*
*
* @generated
*/
public void setXLengthAsString(String newXLengthAsString) {
eSet(Ifc4Package.Literals.IFC_BLOCK__XLENGTH_AS_STRING, newXLengthAsString);
}
/**
*
*
* @generated
*/
public double getYLength() {
return (Double) eGet(Ifc4Package.Literals.IFC_BLOCK__YLENGTH, true);
}
/**
*
*
* @generated
*/
public void setYLength(double newYLength) {
eSet(Ifc4Package.Literals.IFC_BLOCK__YLENGTH, newYLength);
}
/**
*
*
* @generated
*/
public String getYLengthAsString() {
return (String) eGet(Ifc4Package.Literals.IFC_BLOCK__YLENGTH_AS_STRING, true);
}
/**
*
*
* @generated
*/
public void setYLengthAsString(String newYLengthAsString) {
eSet(Ifc4Package.Literals.IFC_BLOCK__YLENGTH_AS_STRING, newYLengthAsString);
}
/**
*
*
* @generated
*/
public double getZLength() {
return (Double) eGet(Ifc4Package.Literals.IFC_BLOCK__ZLENGTH, true);
}
/**
*
*
* @generated
*/
public void setZLength(double newZLength) {
eSet(Ifc4Package.Literals.IFC_BLOCK__ZLENGTH, newZLength);
}
/**
*
*
* @generated
*/
public String getZLengthAsString() {
return (String) eGet(Ifc4Package.Literals.IFC_BLOCK__ZLENGTH_AS_STRING, true);
}
/**
*
*
* @generated
*/
public void setZLengthAsString(String newZLengthAsString) {
eSet(Ifc4Package.Literals.IFC_BLOCK__ZLENGTH_AS_STRING, newZLengthAsString);
}
} //IfcBlockImpl
© 2015 - 2025 Weber Informatics LLC | Privacy Policy