blob: 3f3b2398ad7d2156bd182143830eef28ae771272 [file] [log] [blame]
/**
* <copyright>
* </copyright>
*
* $Id: ComponentUseType.java,v 1.1 2005/01/20 12:03:04 ryman Exp $
*/
package org.eclipse.component.use;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Component Use Type</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.component.use.ComponentUseType#getSourceClass <em>Source Class</em>}</li>
* <li>{@link org.eclipse.component.use.ComponentUseType#getName <em>Name</em>}</li>
* <li>{@link org.eclipse.component.use.ComponentUseType#getVersion <em>Version</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.component.use.UsePackage#getComponentUseType()
* @model
* @generated
*/
public interface ComponentUseType extends EObject
{
/**
* Returns the value of the '<em><b>Source Class</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.component.use.SourceClass}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Source Class</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>Source Class</em>' containment reference list.
* @see org.eclipse.component.use.UsePackage#getComponentUseType_SourceClass()
* @model type="org.eclipse.component.use.SourceClass" containment="true" resolveProxies="false" required="true"
* @generated
*/
EList getSourceClass();
/**
* Returns the value of the '<em><b>Name</b></em>' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
*
* The component name; e.g. "Eclipse Platform
* Generic Workbench"; note that this name is used
* to refer to the component and distinguish it
* from other components (but otherwise has no
* official status in Eclipse ontology)
*
* <!-- end-model-doc -->
* @return the value of the '<em>Name</em>' attribute.
* @see #setName(String)
* @see org.eclipse.component.use.UsePackage#getComponentUseType_Name()
* @model unique="false" dataType="org.eclipse.emf.ecore.xml.type.String" required="true"
* @generated
*/
String getName();
/**
* Sets the value of the '{@link org.eclipse.component.use.ComponentUseType#getName <em>Name</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Name</em>' attribute.
* @see #getName()
* @generated
*/
void setName(String value);
/**
* Returns the value of the '<em><b>Version</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Version</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Version</em>' attribute.
* @see #setVersion(String)
* @see org.eclipse.component.use.UsePackage#getComponentUseType_Version()
* @model unique="false" dataType="org.eclipse.emf.ecore.xml.type.String" required="true"
* @generated
*/
String getVersion();
/**
* Sets the value of the '{@link org.eclipse.component.use.ComponentUseType#getVersion <em>Version</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Version</em>' attribute.
* @see #getVersion()
* @generated
*/
void setVersion(String value);
} // ComponentUseType