KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > Olj > JdbcSourceParameterType


1 /**
2  * <copyright>
3  * </copyright>
4  *
5  * $Id$
6  */

7 package Olj;
8
9 import org.eclipse.emf.ecore.EObject;
10
11 /**
12  * <!-- begin-user-doc -->
13  * A representation of the model object '<em><b>Jdbc Source Parameter Type</b></em>'.
14  * <!-- end-user-doc -->
15  *
16  * <p>
17  * The following features are supported:
18  * <ul>
19  * <li>{@link Olj.JdbcSourceParameterType#getName <em>Name</em>}</li>
20  * <li>{@link Olj.JdbcSourceParameterType#getValue <em>Value</em>}</li>
21  * </ul>
22  * </p>
23  *
24  * @see Olj.OljPackage#getJdbcSourceParameterType()
25  * @model
26  * @generated
27  */

28 public interface JdbcSourceParameterType extends EObject {
29     /**
30      * Returns the value of the '<em><b>Name</b></em>' attribute.
31      * <!-- begin-user-doc -->
32      * <p>
33      * If the meaning of the '<em>Name</em>' attribute isn't clear,
34      * there really should be more of a description here...
35      * </p>
36      * <!-- end-user-doc -->
37      * @return the value of the '<em>Name</em>' attribute.
38      * @see #setName(String)
39      * @see Olj.OljPackage#getJdbcSourceParameterType_Name()
40      * @model unique="false" dataType="Olj.NameType1" required="true"
41      * @generated
42      */

43     String JavaDoc getName();
44
45     /**
46      * Sets the value of the '{@link Olj.JdbcSourceParameterType#getName <em>Name</em>}' attribute.
47      * <!-- begin-user-doc -->
48      * <!-- end-user-doc -->
49      * @param value the new value of the '<em>Name</em>' attribute.
50      * @see #getName()
51      * @generated
52      */

53     void setName(String JavaDoc value);
54
55     /**
56      * Returns the value of the '<em><b>Value</b></em>' attribute.
57      * <!-- begin-user-doc -->
58      * <p>
59      * If the meaning of the '<em>Value</em>' attribute isn't clear,
60      * there really should be more of a description here...
61      * </p>
62      * <!-- end-user-doc -->
63      * @return the value of the '<em>Value</em>' attribute.
64      * @see #setValue(String)
65      * @see Olj.OljPackage#getJdbcSourceParameterType_Value()
66      * @model unique="false" dataType="org.eclipse.emf.ecore.xml.type.String" required="true"
67      * @generated
68      */

69     String JavaDoc getValue();
70
71     /**
72      * Sets the value of the '{@link Olj.JdbcSourceParameterType#getValue <em>Value</em>}' attribute.
73      * <!-- begin-user-doc -->
74      * <!-- end-user-doc -->
75      * @param value the new value of the '<em>Value</em>' attribute.
76      * @see #getValue()
77      * @generated
78      */

79     void setValue(String JavaDoc value);
80
81 } // JdbcSourceParameterType
82
Popular Tags