All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bimserver.models.ifc4.impl.IfcTableRowImpl Maven / Gradle / Ivy

/**
 * 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.emf.IdEObjectImpl;
import org.bimserver.models.ifc4.Ifc4Package;
import org.bimserver.models.ifc4.IfcTable;
import org.bimserver.models.ifc4.IfcTableRow;
import org.bimserver.models.ifc4.IfcValue;
import org.bimserver.models.ifc4.Tristate;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EClass;

/**
 * 
 * An implementation of the model object 'Ifc Table Row'.
 * 
 * 

* The following features are implemented: *

*
    *
  • {@link org.bimserver.models.ifc4.impl.IfcTableRowImpl#getRowCells Row Cells}
  • *
  • {@link org.bimserver.models.ifc4.impl.IfcTableRowImpl#getIsHeading Is Heading}
  • *
  • {@link org.bimserver.models.ifc4.impl.IfcTableRowImpl#getOfTable Of Table}
  • *
* * @generated */ public class IfcTableRowImpl extends IdEObjectImpl implements IfcTableRow { /** * * * @generated */ protected IfcTableRowImpl() { super(); } /** * * * @generated */ @Override protected EClass eStaticClass() { return Ifc4Package.Literals.IFC_TABLE_ROW; } /** * * * @generated */ @Override protected int eStaticFeatureCount() { return 0; } /** * * * @generated */ @SuppressWarnings("unchecked") public EList getRowCells() { return (EList) eGet(Ifc4Package.Literals.IFC_TABLE_ROW__ROW_CELLS, true); } /** * * * @generated */ public void unsetRowCells() { eUnset(Ifc4Package.Literals.IFC_TABLE_ROW__ROW_CELLS); } /** * * * @generated */ public boolean isSetRowCells() { return eIsSet(Ifc4Package.Literals.IFC_TABLE_ROW__ROW_CELLS); } /** * * * @generated */ public Tristate getIsHeading() { return (Tristate) eGet(Ifc4Package.Literals.IFC_TABLE_ROW__IS_HEADING, true); } /** * * * @generated */ public void setIsHeading(Tristate newIsHeading) { eSet(Ifc4Package.Literals.IFC_TABLE_ROW__IS_HEADING, newIsHeading); } /** * * * @generated */ public void unsetIsHeading() { eUnset(Ifc4Package.Literals.IFC_TABLE_ROW__IS_HEADING); } /** * * * @generated */ public boolean isSetIsHeading() { return eIsSet(Ifc4Package.Literals.IFC_TABLE_ROW__IS_HEADING); } /** * * * @generated */ public IfcTable getOfTable() { return (IfcTable) eGet(Ifc4Package.Literals.IFC_TABLE_ROW__OF_TABLE, true); } /** * * * @generated */ public void setOfTable(IfcTable newOfTable) { eSet(Ifc4Package.Literals.IFC_TABLE_ROW__OF_TABLE, newOfTable); } /** * * * @generated */ public void unsetOfTable() { eUnset(Ifc4Package.Literals.IFC_TABLE_ROW__OF_TABLE); } /** * * * @generated */ public boolean isSetOfTable() { return eIsSet(Ifc4Package.Literals.IFC_TABLE_ROW__OF_TABLE); } } //IfcTableRowImpl




© 2015 - 2024 Weber Informatics LLC | Privacy Policy