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

org.openxma.dsl.dom.model.impl.ValueObjectImpl Maven / Gradle / Ivy

There is a newer version: 6.0.2
Show newest version
/**
 * 
 * 
 *
 * $Id: ValueObjectImpl.java 10224 2013-01-04 15:48:48Z dschwarz $
 */
package org.openxma.dsl.dom.model.impl;

import java.util.ArrayList;
import java.util.List;

import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EClass;
import org.openxma.dsl.dom.DomPackage;
import org.openxma.dsl.dom.model.Attribute;
import org.openxma.dsl.dom.model.PresentableFeature;
import org.openxma.dsl.dom.model.ValueObject;

/**
 *  An implementation of the model object '
 * Value Object'. 
 * 

*

* * @generated */ public class ValueObjectImpl extends ComplexTypeImpl implements ValueObject { /** * * @generated */ protected ValueObjectImpl() { super(); } /** * * @generated */ @Override protected EClass eStaticClass() { return DomPackage.Literals.VALUE_OBJECT; } /** * @generated NOT */ @Override public EList getAllAttributes() { return getAttributes(); } /** * @generated NOT */ public List getAllPresentableFeaturesIncludingSuperType() { List presentableFeatureList = new ArrayList(); presentableFeatureList.addAll(getAllAttributes()); return presentableFeatureList; } } // ValueObjectImpl




© 2015 - 2024 Weber Informatics LLC | Privacy Policy