blob: ec51fb5fa03d7d31b66513d00c4c8ae8853a8047 [file] [log] [blame]
/*
* Copyright (c) 2007 Borland Software Corporation
*
* 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:
* Dmitry Stadnik (Borland) - initial API and implementation
*/
package org.eclipse.gmf.sketch;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EAnnotation;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Element</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.gmf.sketch.SketchElement#getEAnnotations <em>EAnnotations</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.gmf.sketch.SketchPackage#getSketchElement()
* @model abstract="true"
* @generated
*/
public interface SketchElement extends EObject {
/**
* Returns the value of the '<em><b>EAnnotations</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.emf.ecore.EAnnotation}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>EAnnotations</em>' containment reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>EAnnotations</em>' containment reference list.
* @see org.eclipse.gmf.sketch.SketchPackage#getSketchElement_EAnnotations()
* @model type="org.eclipse.emf.ecore.EAnnotation" containment="true"
* @generated
*/
EList<EAnnotation> getEAnnotations();
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @model
* @generated
*/
EAnnotation getEAnnotation(String source);
} // SketchElement