blob: 4a6a73cb0a2f88a317b032851b3540f747e5669c [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2008 E.D.Willink 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
*
* Contributors:
* E.D.Willink - initial API and implementation
*
* </copyright>
*
* $Id: OutlineElement.java,v 1.1 2008/08/24 18:56:21 ewillink Exp $
*/
package org.eclipse.qvt.declarative.editor;
import org.eclipse.emf.ecore.EStructuralFeature;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Outline Element</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.qvt.declarative.editor.OutlineElement#getFeature <em>Feature</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.qvt.declarative.editor.EditorPackage#getOutlineElement()
* @model
* @generated
*/
public interface OutlineElement extends AbstractOutlineElement {
/**
* Returns the value of the '<em><b>Feature</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Feature</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Feature</em>' reference.
* @see #setFeature(EStructuralFeature)
* @see org.eclipse.qvt.declarative.editor.EditorPackage#getOutlineElement_Feature()
* @model required="true"
* @generated
*/
EStructuralFeature getFeature();
/**
* Sets the value of the '{@link org.eclipse.qvt.declarative.editor.OutlineElement#getFeature <em>Feature</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Feature</em>' reference.
* @see #getFeature()
* @generated
*/
void setFeature(EStructuralFeature value);
} // OutlineElement