KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > Olj > IncludeType


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>Include Type</b></em>'.
14  * <!-- end-user-doc -->
15  *
16  * <p>
17  * The following features are supported:
18  * <ul>
19  * <li>{@link Olj.IncludeType#getHref <em>Href</em>}</li>
20  * <li>{@link Olj.IncludeType#getParse <em>Parse</em>}</li>
21  * </ul>
22  * </p>
23  *
24  * @see Olj.OljPackage#getIncludeType()
25  * @model
26  * @generated
27  */

28 public interface IncludeType extends EObject {
29     /**
30      * Returns the value of the '<em><b>Href</b></em>' attribute.
31      * <!-- begin-user-doc -->
32      * <p>
33      * If the meaning of the '<em>Href</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>Href</em>' attribute.
38      * @see #setHref(String)
39      * @see Olj.OljPackage#getIncludeType_Href()
40      * @model unique="false" dataType="org.eclipse.emf.ecore.xml.type.String" required="true"
41      * @generated
42      */

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

53     void setHref(String JavaDoc value);
54
55     /**
56      * Returns the value of the '<em><b>Parse</b></em>' attribute.
57      * <!-- begin-user-doc -->
58      * <p>
59      * If the meaning of the '<em>Parse</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>Parse</em>' attribute.
64      * @see #setParse(String)
65      * @see Olj.OljPackage#getIncludeType_Parse()
66      * @model unique="false" dataType="org.eclipse.emf.ecore.xml.type.String" required="true"
67      * @generated
68      */

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

79     void setParse(String JavaDoc value);
80
81 } // IncludeType
82
Popular Tags