KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > emf > codegen > ecore > genmodel > GenParameter


1 /**
2  * <copyright>
3  *
4  * Copyright (c) 2002-2004 IBM Corporation and others.
5  * All rights reserved. This program and the accompanying materials
6  * are made available under the terms of the Eclipse Public License v1.0
7  * which accompanies this distribution, and is available at
8  * http://www.eclipse.org/legal/epl-v10.html
9  *
10  * Contributors:
11  * IBM - Initial API and implementation
12  *
13  * </copyright>
14  *
15  * $Id: GenParameter.java,v 1.5 2005/06/08 06:18:44 nickb Exp $
16  */

17 package org.eclipse.emf.codegen.ecore.genmodel;
18
19
20 import org.eclipse.emf.ecore.EParameter;
21
22
23 /**
24  * <!-- begin-user-doc -->
25  * A representation of the model object '<em><b>Gen Parameter</b></em>'.
26  * <!-- end-user-doc -->
27  *
28  * <p>
29  * The following features are supported:
30  * <ul>
31  * <li>{@link org.eclipse.emf.codegen.ecore.genmodel.GenParameter#getGenOperation <em>Gen Operation</em>}</li>
32  * <li>{@link org.eclipse.emf.codegen.ecore.genmodel.GenParameter#getEcoreParameter <em>Ecore Parameter</em>}</li>
33  * </ul>
34  * </p>
35  *
36  * @see org.eclipse.emf.codegen.ecore.genmodel.GenModelPackage#getGenParameter()
37  * @model
38  * @generated
39  */

40 public interface GenParameter extends GenTypedElement {
41   /**
42    * Returns the value of the '<em><b>Gen Operation</b></em>' container reference.
43    * It is bidirectional and its opposite is '{@link org.eclipse.emf.codegen.ecore.genmodel.GenOperation#getGenParameters <em>Gen Parameters</em>}'.
44    * <!-- begin-user-doc -->
45    * <p>
46    * If the meaning of the '<em>Gen Operation</em>' reference isn't clear,
47    * there really should be more of a description here...
48    * </p>
49    * <!-- end-user-doc -->
50    * @return the value of the '<em>Gen Operation</em>' container reference.
51    * @see #setGenOperation(GenOperation)
52    * @see org.eclipse.emf.codegen.ecore.genmodel.GenModelPackage#getGenParameter_GenOperation()
53    * @see org.eclipse.emf.codegen.ecore.genmodel.GenOperation#getGenParameters
54    * @model opposite="genParameters" required="true"
55    * @generated
56    */

57   GenOperation getGenOperation();
58
59   /**
60    * Sets the value of the '{@link org.eclipse.emf.codegen.ecore.genmodel.GenParameter#getGenOperation <em>Gen Operation</em>}' container reference.
61    * <!-- begin-user-doc -->
62    * <!-- end-user-doc -->
63    * @param value the new value of the '<em>Gen Operation</em>' container reference.
64    * @see #getGenOperation()
65    * @generated
66    */

67   void setGenOperation(GenOperation value);
68
69   /**
70    * Returns the value of the '<em><b>Ecore Parameter</b></em>' reference.
71    * <!-- begin-user-doc -->
72    * <p>
73    * If the meaning of the '<em>Ecore Parameter</em>' reference isn't clear,
74    * there really should be more of a description here...
75    * </p>
76    * <!-- end-user-doc -->
77    * @return the value of the '<em>Ecore Parameter</em>' reference.
78    * @see #setEcoreParameter(EParameter)
79    * @see org.eclipse.emf.codegen.ecore.genmodel.GenModelPackage#getGenParameter_EcoreParameter()
80    * @model required="true"
81    * @generated
82    */

83   EParameter getEcoreParameter();
84
85   /**
86    * Sets the value of the '{@link org.eclipse.emf.codegen.ecore.genmodel.GenParameter#getEcoreParameter <em>Ecore Parameter</em>}' reference.
87    * <!-- begin-user-doc -->
88    * <!-- end-user-doc -->
89    * @param value the new value of the '<em>Ecore Parameter</em>' reference.
90    * @see #getEcoreParameter()
91    * @generated
92    */

93   void setEcoreParameter(EParameter value);
94
95   String JavaDoc getName();
96   GenPackage getGenPackage();
97
98   void initialize(EParameter eParameter);
99   String JavaDoc getQualifiedModelInfo();
100
101   boolean reconcile(GenParameter oldGenParameterVersion);
102 }
103
Popular Tags