blob: 64e395cde8421156c06beb8793d566318554ade0 [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.EAttribute;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Label</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.gmf.sketch.SketchLabel#getAttributes <em>Attributes</em>}</li>
* <li>{@link org.eclipse.gmf.sketch.SketchLabel#isExternal <em>External</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.gmf.sketch.SketchPackage#getSketchLabel()
* @model
* @generated
*/
public interface SketchLabel extends SketchDiagramElement {
/**
* Returns the value of the '<em><b>Attributes</b></em>' reference list.
* The list contents are of type {@link org.eclipse.emf.ecore.EAttribute}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Attributes</em>' reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Attributes</em>' reference list.
* @see org.eclipse.gmf.sketch.SketchPackage#getSketchLabel_Attributes()
* @model type="org.eclipse.emf.ecore.EAttribute"
* @generated
*/
EList<EAttribute> getAttributes();
/**
* Returns the value of the '<em><b>External</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>External</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>External</em>' attribute.
* @see #setExternal(boolean)
* @see org.eclipse.gmf.sketch.SketchPackage#getSketchLabel_External()
* @model
* @generated
*/
boolean isExternal();
/**
* Sets the value of the '{@link org.eclipse.gmf.sketch.SketchLabel#isExternal <em>External</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>External</em>' attribute.
* @see #isExternal()
* @generated
*/
void setExternal(boolean value);
} // SketchLabel