
org.bimserver.models.ifc2x3tc1.impl.IfcTaskImpl 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.ifc2x3tc1.impl;
import org.bimserver.models.ifc2x3tc1.Ifc2x3tc1Package;
import org.bimserver.models.ifc2x3tc1.IfcTask;
import org.bimserver.models.ifc2x3tc1.Tristate;
import org.eclipse.emf.ecore.EClass;
/**
*
* An implementation of the model object 'Ifc Task'.
*
*
* The following features are implemented:
*
*
* - {@link org.bimserver.models.ifc2x3tc1.impl.IfcTaskImpl#getTaskId Task Id}
* - {@link org.bimserver.models.ifc2x3tc1.impl.IfcTaskImpl#getStatus Status}
* - {@link org.bimserver.models.ifc2x3tc1.impl.IfcTaskImpl#getWorkMethod Work Method}
* - {@link org.bimserver.models.ifc2x3tc1.impl.IfcTaskImpl#getIsMilestone Is Milestone}
* - {@link org.bimserver.models.ifc2x3tc1.impl.IfcTaskImpl#getPriority Priority}
*
*
* @generated
*/
public class IfcTaskImpl extends IfcProcessImpl implements IfcTask {
/**
*
*
* @generated
*/
protected IfcTaskImpl() {
super();
}
/**
*
*
* @generated
*/
@Override
protected EClass eStaticClass() {
return Ifc2x3tc1Package.Literals.IFC_TASK;
}
/**
*
*
* @generated
*/
public String getTaskId() {
return (String) eGet(Ifc2x3tc1Package.Literals.IFC_TASK__TASK_ID, true);
}
/**
*
*
* @generated
*/
public void setTaskId(String newTaskId) {
eSet(Ifc2x3tc1Package.Literals.IFC_TASK__TASK_ID, newTaskId);
}
/**
*
*
* @generated
*/
public String getStatus() {
return (String) eGet(Ifc2x3tc1Package.Literals.IFC_TASK__STATUS, true);
}
/**
*
*
* @generated
*/
public void setStatus(String newStatus) {
eSet(Ifc2x3tc1Package.Literals.IFC_TASK__STATUS, newStatus);
}
/**
*
*
* @generated
*/
public void unsetStatus() {
eUnset(Ifc2x3tc1Package.Literals.IFC_TASK__STATUS);
}
/**
*
*
* @generated
*/
public boolean isSetStatus() {
return eIsSet(Ifc2x3tc1Package.Literals.IFC_TASK__STATUS);
}
/**
*
*
* @generated
*/
public String getWorkMethod() {
return (String) eGet(Ifc2x3tc1Package.Literals.IFC_TASK__WORK_METHOD, true);
}
/**
*
*
* @generated
*/
public void setWorkMethod(String newWorkMethod) {
eSet(Ifc2x3tc1Package.Literals.IFC_TASK__WORK_METHOD, newWorkMethod);
}
/**
*
*
* @generated
*/
public void unsetWorkMethod() {
eUnset(Ifc2x3tc1Package.Literals.IFC_TASK__WORK_METHOD);
}
/**
*
*
* @generated
*/
public boolean isSetWorkMethod() {
return eIsSet(Ifc2x3tc1Package.Literals.IFC_TASK__WORK_METHOD);
}
/**
*
*
* @generated
*/
public Tristate getIsMilestone() {
return (Tristate) eGet(Ifc2x3tc1Package.Literals.IFC_TASK__IS_MILESTONE, true);
}
/**
*
*
* @generated
*/
public void setIsMilestone(Tristate newIsMilestone) {
eSet(Ifc2x3tc1Package.Literals.IFC_TASK__IS_MILESTONE, newIsMilestone);
}
/**
*
*
* @generated
*/
public int getPriority() {
return (Integer) eGet(Ifc2x3tc1Package.Literals.IFC_TASK__PRIORITY, true);
}
/**
*
*
* @generated
*/
public void setPriority(int newPriority) {
eSet(Ifc2x3tc1Package.Literals.IFC_TASK__PRIORITY, newPriority);
}
/**
*
*
* @generated
*/
public void unsetPriority() {
eUnset(Ifc2x3tc1Package.Literals.IFC_TASK__PRIORITY);
}
/**
*
*
* @generated
*/
public boolean isSetPriority() {
return eIsSet(Ifc2x3tc1Package.Literals.IFC_TASK__PRIORITY);
}
} //IfcTaskImpl
© 2015 - 2025 Weber Informatics LLC | Privacy Policy