KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > Olj > EchoType


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

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

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

52     void setMessage(String JavaDoc value);
53
54 } // EchoType
55
Popular Tags