/** * Copyright (c) 2011 Cloudsmith Inc. and other contributors, as listed below. * 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: * Cloudsmith * */ package org.cloudsmith.geppetto.pp.pptp; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Abstract Type</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.cloudsmith.geppetto.pp.pptp.AbstractType#getEReference0 <em>EReference0</em>}</li> * <li>{@link org.cloudsmith.geppetto.pp.pptp.AbstractType#getProperties <em>Properties</em>}</li> * <li>{@link org.cloudsmith.geppetto.pp.pptp.AbstractType#getParameters <em>Parameters</em>}</li> * </ul> * </p> * * @see org.cloudsmith.geppetto.pp.pptp.PPTPPackage#getAbstractType() * @model abstract="true" * @generated */ public interface AbstractType extends TargetElement { /** * Returns the value of the '<em><b>EReference0</b></em>' reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>EReference0</em>' reference isn't clear, there really should be more of a description here... * </p> * <!-- end-user-doc --> * * @return the value of the '<em>EReference0</em>' reference. * @see #setEReference0(IDocumented) * @see org.cloudsmith.geppetto.pp.pptp.PPTPPackage#getAbstractType_EReference0() * @model * @generated */ IDocumented getEReference0(); /** * Returns the value of the '<em><b>Parameters</b></em>' containment reference list. * The list contents are of type {@link org.cloudsmith.geppetto.pp.pptp.Parameter}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Parameters</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>Parameters</em>' containment reference list. * @see org.cloudsmith.geppetto.pp.pptp.PPTPPackage#getAbstractType_Parameters() * @model containment="true" * @generated */ EList<Parameter> getParameters(); /** * Returns the value of the '<em><b>Properties</b></em>' containment reference list. * The list contents are of type {@link org.cloudsmith.geppetto.pp.pptp.Property}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Properties</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>Properties</em>' containment reference list. * @see org.cloudsmith.geppetto.pp.pptp.PPTPPackage#getAbstractType_Properties() * @model containment="true" * @generated */ EList<Property> getProperties(); /** * Sets the value of the '{@link org.cloudsmith.geppetto.pp.pptp.AbstractType#getEReference0 <em>EReference0</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @param value * the new value of the '<em>EReference0</em>' reference. * @see #getEReference0() * @generated */ void setEReference0(IDocumented value); } // AbstractType