blob: 5979aded5bfad8beddbd15d5ba1a3fdb22f4555b [file] [log] [blame]
/**
* Copyright (c) 2011, 2015 - Lunifera GmbH (Gross Enzersdorf), Loetz GmbH&Co.KG (Heidelberg)
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Florian Pirchner - Initial implementation
*
* generated by Xtext 2.11.0
*/
package org.eclipse.xtext.example.domainmodel.domainmodel;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.xtext.common.types.JvmTypeReference;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Feature</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.xtext.example.domainmodel.domainmodel.Feature#getName <em>Name</em>}</li>
* <li>{@link org.eclipse.xtext.example.domainmodel.domainmodel.Feature#getType <em>Type</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.xtext.example.domainmodel.domainmodel.DomainmodelPackage#getFeature()
* @model
* @generated
*/
public interface Feature extends EObject
{
/**
* Returns the value of the '<em><b>Name</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Name</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Name</em>' attribute.
* @see #setName(String)
* @see org.eclipse.xtext.example.domainmodel.domainmodel.DomainmodelPackage#getFeature_Name()
* @model
* @generated
*/
String getName();
/**
* Sets the value of the '{@link org.eclipse.xtext.example.domainmodel.domainmodel.Feature#getName <em>Name</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Name</em>' attribute.
* @see #getName()
* @generated
*/
void setName(String value);
/**
* Returns the value of the '<em><b>Type</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Type</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Type</em>' containment reference.
* @see #setType(JvmTypeReference)
* @see org.eclipse.xtext.example.domainmodel.domainmodel.DomainmodelPackage#getFeature_Type()
* @model containment="true"
* @generated
*/
JvmTypeReference getType();
/**
* Sets the value of the '{@link org.eclipse.xtext.example.domainmodel.domainmodel.Feature#getType <em>Type</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Type</em>' containment reference.
* @see #getType()
* @generated
*/
void setType(JvmTypeReference value);
} // Feature