/** * <copyright> * </copyright> * * $Id: External.java,v 1.1 2008/12/16 20:40:19 mtaal Exp $ */ package org.eclipse.emf.teneo.annotations.pannotation; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>External</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.emf.teneo.annotations.pannotation.External#getType <em>Type</em>}</li> * </ul> * </p> * * @see org.eclipse.emf.teneo.annotations.pannotation.PannotationPackage#getExternal() * @model annotation="teneo/internal/Target 0='EReference'" * @generated */ public interface External extends PAnnotation { /** * Returns the value of the '<em><b>Type</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Type</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Type</em>' attribute. * @see #setType(String) * @see org.eclipse.emf.teneo.annotations.pannotation.PannotationPackage#getExternal_Type() * @model * @generated */ String getType(); /** * Sets the value of the '{@link org.eclipse.emf.teneo.annotations.pannotation.External#getType <em>Type</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Type</em>' attribute. * @see #getType() * @generated */ void setType(String value); } // External