/******************************************************************************* * Copyright (c) 2005-2009 itemis AG (http://www.itemis.eu) and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * *******************************************************************************/ package org.eclipse.xtend.typesystem.emf.check.model.test; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; import org.eclipse.xtend.typesystem.emf.check.model.test.subpackage.SubpackageMetaClass; /** * * A representation of the model object 'My Meta Class'. * * *

* The following features are supported: *

*

* * @see org.eclipse.xtend.typesystem.emf.check.model.test.TestPackage#getMyMetaClass() * @model * @generated */ public interface MyMetaClass extends EObject { /** * Returns the value of the 'Name' attribute. * *

* If the meaning of the 'Name' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Name' attribute. * @see #setName(String) * @see org.eclipse.xtend.typesystem.emf.check.model.test.TestPackage#getMyMetaClass_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link org.eclipse.xtend.typesystem.emf.check.model.test.MyMetaClass#getName Name}' attribute. * * * @param value the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the 'Children' containment reference list. * The list contents are of type {@link org.eclipse.xtend.typesystem.emf.check.model.test.MyMetaClass}. * *

* If the meaning of the 'Children' containment reference list isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Children' containment reference list. * @see org.eclipse.xtend.typesystem.emf.check.model.test.TestPackage#getMyMetaClass_Children() * @model containment="true" * @generated */ EList getChildren(); /** * Returns the value of the 'Sub Package Ref' containment reference. * *

* If the meaning of the 'Sub Package Ref' containment reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Sub Package Ref' containment reference. * @see #setSubPackageRef(SubpackageMetaClass) * @see org.eclipse.xtend.typesystem.emf.check.model.test.TestPackage#getMyMetaClass_SubPackageRef() * @model containment="true" * @generated */ SubpackageMetaClass getSubPackageRef(); /** * Sets the value of the '{@link org.eclipse.xtend.typesystem.emf.check.model.test.MyMetaClass#getSubPackageRef Sub Package Ref}' containment reference. * * * @param value the new value of the 'Sub Package Ref' containment reference. * @see #getSubPackageRef() * @generated */ void setSubPackageRef(SubpackageMetaClass value); /** * Returns the value of the 'Enum Attr' attribute. * The literals are from the enumeration {@link org.eclipse.xtend.typesystem.emf.check.model.test.MyEnum}. * *

* If the meaning of the 'Enum Attr' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Enum Attr' attribute. * @see org.eclipse.xtend.typesystem.emf.check.model.test.MyEnum * @see #setEnumAttr(MyEnum) * @see org.eclipse.xtend.typesystem.emf.check.model.test.TestPackage#getMyMetaClass_EnumAttr() * @model * @generated */ MyEnum getEnumAttr(); /** * Sets the value of the '{@link org.eclipse.xtend.typesystem.emf.check.model.test.MyMetaClass#getEnumAttr Enum Attr}' attribute. * * * @param value the new value of the 'Enum Attr' attribute. * @see org.eclipse.xtend.typesystem.emf.check.model.test.MyEnum * @see #getEnumAttr() * @generated */ void setEnumAttr(MyEnum value); } // MyMetaClass