KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > Olj > RestartCounterType


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>Restart Counter Type</b></em>'.
14  * <!-- end-user-doc -->
15  *
16  * <p>
17  * The following features are supported:
18  * <ul>
19  * <li>{@link Olj.RestartCounterType#getImportDefinitionColumnName <em>Import Definition Column Name</em>}</li>
20  * <li>{@link Olj.RestartCounterType#getRestartAutoCreate <em>Restart Auto Create</em>}</li>
21  * <li>{@link Olj.RestartCounterType#getRestartCounterColumnName <em>Restart Counter Column Name</em>}</li>
22  * <li>{@link Olj.RestartCounterType#getTableName <em>Table Name</em>}</li>
23  * </ul>
24  * </p>
25  *
26  * @see Olj.OljPackage#getRestartCounterType()
27  * @model
28  * @generated
29  */

30 public interface RestartCounterType extends EObject {
31     /**
32      * Returns the value of the '<em><b>Import Definition Column Name</b></em>' attribute.
33      * <!-- begin-user-doc -->
34      * <p>
35      * If the meaning of the '<em>Import Definition Column Name</em>' attribute isn't clear,
36      * there really should be more of a description here...
37      * </p>
38      * <!-- end-user-doc -->
39      * @return the value of the '<em>Import Definition Column Name</em>' attribute.
40      * @see #setImportDefinitionColumnName(String)
41      * @see Olj.OljPackage#getRestartCounterType_ImportDefinitionColumnName()
42      * @model unique="false" dataType="org.eclipse.emf.ecore.xml.type.String" required="true"
43      * @generated
44      */

45     String JavaDoc getImportDefinitionColumnName();
46
47     /**
48      * Sets the value of the '{@link Olj.RestartCounterType#getImportDefinitionColumnName <em>Import Definition Column Name</em>}' attribute.
49      * <!-- begin-user-doc -->
50      * <!-- end-user-doc -->
51      * @param value the new value of the '<em>Import Definition Column Name</em>' attribute.
52      * @see #getImportDefinitionColumnName()
53      * @generated
54      */

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

71     String JavaDoc getRestartAutoCreate();
72
73     /**
74      * Sets the value of the '{@link Olj.RestartCounterType#getRestartAutoCreate <em>Restart Auto Create</em>}' attribute.
75      * <!-- begin-user-doc -->
76      * <!-- end-user-doc -->
77      * @param value the new value of the '<em>Restart Auto Create</em>' attribute.
78      * @see #getRestartAutoCreate()
79      * @generated
80      */

81     void setRestartAutoCreate(String JavaDoc value);
82
83     /**
84      * Returns the value of the '<em><b>Restart Counter Column Name</b></em>' attribute.
85      * <!-- begin-user-doc -->
86      * <p>
87      * If the meaning of the '<em>Restart Counter Column Name</em>' attribute isn't clear,
88      * there really should be more of a description here...
89      * </p>
90      * <!-- end-user-doc -->
91      * @return the value of the '<em>Restart Counter Column Name</em>' attribute.
92      * @see #setRestartCounterColumnName(String)
93      * @see Olj.OljPackage#getRestartCounterType_RestartCounterColumnName()
94      * @model unique="false" dataType="org.eclipse.emf.ecore.xml.type.String" required="true"
95      * @generated
96      */

97     String JavaDoc getRestartCounterColumnName();
98
99     /**
100      * Sets the value of the '{@link Olj.RestartCounterType#getRestartCounterColumnName <em>Restart Counter Column Name</em>}' attribute.
101      * <!-- begin-user-doc -->
102      * <!-- end-user-doc -->
103      * @param value the new value of the '<em>Restart Counter Column Name</em>' attribute.
104      * @see #getRestartCounterColumnName()
105      * @generated
106      */

107     void setRestartCounterColumnName(String JavaDoc value);
108
109     /**
110      * Returns the value of the '<em><b>Table Name</b></em>' attribute.
111      * <!-- begin-user-doc -->
112      * <p>
113      * If the meaning of the '<em>Table Name</em>' attribute isn't clear,
114      * there really should be more of a description here...
115      * </p>
116      * <!-- end-user-doc -->
117      * @return the value of the '<em>Table Name</em>' attribute.
118      * @see #setTableName(String)
119      * @see Olj.OljPackage#getRestartCounterType_TableName()
120      * @model unique="false" dataType="org.eclipse.emf.ecore.xml.type.String" required="true"
121      * @generated
122      */

123     String JavaDoc getTableName();
124
125     /**
126      * Sets the value of the '{@link Olj.RestartCounterType#getTableName <em>Table Name</em>}' attribute.
127      * <!-- begin-user-doc -->
128      * <!-- end-user-doc -->
129      * @param value the new value of the '<em>Table Name</em>' attribute.
130      * @see #getTableName()
131      * @generated
132      */

133     void setTableName(String JavaDoc value);
134
135 } // RestartCounterType
136
Popular Tags