
org.bimserver.models.ifc2x3tc1.impl.IfcPointOnSurfaceImpl 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
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.ifc2x3tc1.impl;
import org.bimserver.models.ifc2x3tc1.Ifc2x3tc1Package;
import org.bimserver.models.ifc2x3tc1.IfcPointOnSurface;
import org.bimserver.models.ifc2x3tc1.IfcSurface;
import org.eclipse.emf.ecore.EClass;
/**
*
* An implementation of the model object 'Ifc Point On Surface'.
*
*
* The following features are implemented:
*
*
* - {@link org.bimserver.models.ifc2x3tc1.impl.IfcPointOnSurfaceImpl#getBasisSurface Basis Surface}
* - {@link org.bimserver.models.ifc2x3tc1.impl.IfcPointOnSurfaceImpl#getPointParameterU Point Parameter U}
* - {@link org.bimserver.models.ifc2x3tc1.impl.IfcPointOnSurfaceImpl#getPointParameterUAsString Point Parameter UAs String}
* - {@link org.bimserver.models.ifc2x3tc1.impl.IfcPointOnSurfaceImpl#getPointParameterV Point Parameter V}
* - {@link org.bimserver.models.ifc2x3tc1.impl.IfcPointOnSurfaceImpl#getPointParameterVAsString Point Parameter VAs String}
* - {@link org.bimserver.models.ifc2x3tc1.impl.IfcPointOnSurfaceImpl#getDim Dim}
*
*
* @generated
*/
public class IfcPointOnSurfaceImpl extends IfcPointImpl implements IfcPointOnSurface {
/**
*
*
* @generated
*/
protected IfcPointOnSurfaceImpl() {
super();
}
/**
*
*
* @generated
*/
@Override
protected EClass eStaticClass() {
return Ifc2x3tc1Package.Literals.IFC_POINT_ON_SURFACE;
}
/**
*
*
* @generated
*/
public IfcSurface getBasisSurface() {
return (IfcSurface) eGet(Ifc2x3tc1Package.Literals.IFC_POINT_ON_SURFACE__BASIS_SURFACE, true);
}
/**
*
*
* @generated
*/
public void setBasisSurface(IfcSurface newBasisSurface) {
eSet(Ifc2x3tc1Package.Literals.IFC_POINT_ON_SURFACE__BASIS_SURFACE, newBasisSurface);
}
/**
*
*
* @generated
*/
public double getPointParameterU() {
return (Double) eGet(Ifc2x3tc1Package.Literals.IFC_POINT_ON_SURFACE__POINT_PARAMETER_U, true);
}
/**
*
*
* @generated
*/
public void setPointParameterU(double newPointParameterU) {
eSet(Ifc2x3tc1Package.Literals.IFC_POINT_ON_SURFACE__POINT_PARAMETER_U, newPointParameterU);
}
/**
*
*
* @generated
*/
public String getPointParameterUAsString() {
return (String) eGet(Ifc2x3tc1Package.Literals.IFC_POINT_ON_SURFACE__POINT_PARAMETER_UAS_STRING, true);
}
/**
*
*
* @generated
*/
public void setPointParameterUAsString(String newPointParameterUAsString) {
eSet(Ifc2x3tc1Package.Literals.IFC_POINT_ON_SURFACE__POINT_PARAMETER_UAS_STRING, newPointParameterUAsString);
}
/**
*
*
* @generated
*/
public double getPointParameterV() {
return (Double) eGet(Ifc2x3tc1Package.Literals.IFC_POINT_ON_SURFACE__POINT_PARAMETER_V, true);
}
/**
*
*
* @generated
*/
public void setPointParameterV(double newPointParameterV) {
eSet(Ifc2x3tc1Package.Literals.IFC_POINT_ON_SURFACE__POINT_PARAMETER_V, newPointParameterV);
}
/**
*
*
* @generated
*/
public String getPointParameterVAsString() {
return (String) eGet(Ifc2x3tc1Package.Literals.IFC_POINT_ON_SURFACE__POINT_PARAMETER_VAS_STRING, true);
}
/**
*
*
* @generated
*/
public void setPointParameterVAsString(String newPointParameterVAsString) {
eSet(Ifc2x3tc1Package.Literals.IFC_POINT_ON_SURFACE__POINT_PARAMETER_VAS_STRING, newPointParameterVAsString);
}
/**
*
*
* @generated
*/
public int getDim() {
return (Integer) eGet(Ifc2x3tc1Package.Literals.IFC_POINT_ON_SURFACE__DIM, true);
}
/**
*
*
* @generated
*/
public void setDim(int newDim) {
eSet(Ifc2x3tc1Package.Literals.IFC_POINT_ON_SURFACE__DIM, newDim);
}
/**
*
*
* @generated
*/
public void unsetDim() {
eUnset(Ifc2x3tc1Package.Literals.IFC_POINT_ON_SURFACE__DIM);
}
/**
*
*
* @generated
*/
public boolean isSetDim() {
return eIsSet(Ifc2x3tc1Package.Literals.IFC_POINT_ON_SURFACE__DIM);
}
} //IfcPointOnSurfaceImpl
© 2015 - 2025 Weber Informatics LLC | Privacy Policy