Skip to content

Package: SimpleTestObject

SimpleTestObject

Coverage

1: /**
2: * Copyright (c) 2011-2015 EclipseSource Muenchen GmbH and others.
3: *
4: * All rights reserved. This program and the accompanying materials
5: * are made available under the terms of the Eclipse Public License 2.0
6: * which accompanies this distribution, and is available at
7: * https://www.eclipse.org/legal/epl-2.0/
8: *
9: * SPDX-License-Identifier: EPL-2.0
10: *
11: * Contributors:
12: * Eugen Neufeld - initial API and implementation
13: * Lucas Koehler - extension for EnumComboViewerRenderer_PTest
14: */
15: package org.eclipse.emf.ecp.view.core.swt.test.model;
16:
17: import java.util.Date;
18:
19: import javax.xml.datatype.XMLGregorianCalendar;
20:
21: import org.eclipse.emf.ecore.EObject;
22:
23: /**
24: * <!-- begin-user-doc -->
25: * A representation of the model object '<em><b>Simple Test Object</b></em>'.
26: * <!-- end-user-doc -->
27: *
28: * <p>
29: * The following features are supported:
30: * </p>
31: * <ul>
32: * <li>{@link org.eclipse.emf.ecp.view.core.swt.test.model.SimpleTestObject#getDate <em>Date</em>}</li>
33: * <li>{@link org.eclipse.emf.ecp.view.core.swt.test.model.SimpleTestObject#getXmlDate <em>Xml Date</em>}</li>
34: * <li>{@link org.eclipse.emf.ecp.view.core.swt.test.model.SimpleTestObject#getMyEnum <em>My Enum</em>}</li>
35: * <li>{@link org.eclipse.emf.ecp.view.core.swt.test.model.SimpleTestObject#getInner <em>Inner</em>}</li>
36: * </ul>
37: *
38: * @see org.eclipse.emf.ecp.view.core.swt.test.model.TestPackage#getSimpleTestObject()
39: * @model
40: * @generated
41: */
42: public interface SimpleTestObject extends EObject {
43:         /**
44:          * Returns the value of the '<em><b>Date</b></em>' attribute.
45:          * <!-- begin-user-doc -->
46:          * <p>
47:          * If the meaning of the '<em>Date</em>' attribute isn't clear, there really should be more of a description here...
48:          * </p>
49:          * <!-- end-user-doc -->
50:          *
51:          * @return the value of the '<em>Date</em>' attribute.
52:          * @see #setDate(Date)
53:          * @see org.eclipse.emf.ecp.view.core.swt.test.model.TestPackage#getSimpleTestObject_Date()
54:          * @model
55:          * @generated
56:          */
57:         Date getDate();
58:
59:         /**
60:          * Sets the value of the '{@link org.eclipse.emf.ecp.view.core.swt.test.model.SimpleTestObject#getDate
61:          * <em>Date</em>}' attribute.
62:          * <!-- begin-user-doc -->
63:          * <!-- end-user-doc -->
64:          *
65:          * @param value the new value of the '<em>Date</em>' attribute.
66:          * @see #getDate()
67:          * @generated
68:          */
69:         void setDate(Date value);
70:
71:         /**
72:          * Returns the value of the '<em><b>Xml Date</b></em>' attribute.
73:          * <!-- begin-user-doc -->
74:          * <p>
75:          * If the meaning of the '<em>Xml Date</em>' attribute isn't clear, there really should be more of a description
76:          * here...
77:          * </p>
78:          * <!-- end-user-doc -->
79:          *
80:          * @return the value of the '<em>Xml Date</em>' attribute.
81:          * @see #setXmlDate(XMLGregorianCalendar)
82:          * @see org.eclipse.emf.ecp.view.core.swt.test.model.TestPackage#getSimpleTestObject_XmlDate()
83:          * @model dataType="org.eclipse.emf.ecp.view.core.swt.test.model.XMLDate"
84:          * @generated
85:          */
86:         XMLGregorianCalendar getXmlDate();
87:
88:         /**
89:          * Sets the value of the '{@link org.eclipse.emf.ecp.view.core.swt.test.model.SimpleTestObject#getXmlDate <em>Xml
90:          * Date</em>}' attribute.
91:          * <!-- begin-user-doc -->
92:          * <!-- end-user-doc -->
93:          *
94:          * @param value the new value of the '<em>Xml Date</em>' attribute.
95:          * @see #getXmlDate()
96:          * @generated
97:          */
98:         void setXmlDate(XMLGregorianCalendar value);
99:
100:         /**
101:          * Returns the value of the '<em><b>My Enum</b></em>' attribute.
102:          * The literals are from the enumeration {@link org.eclipse.emf.ecp.view.core.swt.test.model.TestEnum}.
103:          * <!-- begin-user-doc -->
104:          * <p>
105:          * If the meaning of the '<em>My Enum</em>' attribute isn't clear, there really should be more of a description
106:          * here...
107:          * </p>
108:          * <!-- end-user-doc -->
109:          *
110:          * @return the value of the '<em>My Enum</em>' attribute.
111:          * @see org.eclipse.emf.ecp.view.core.swt.test.model.TestEnum
112:          * @see #setMyEnum(TestEnum)
113:          * @see org.eclipse.emf.ecp.view.core.swt.test.model.TestPackage#getSimpleTestObject_MyEnum()
114:          * @model dataType="org.eclipse.emf.ecp.view.core.swt.test.model.TestEnum"
115:          * @generated
116:          */
117:         TestEnum getMyEnum();
118:
119:         /**
120:          * Sets the value of the '{@link org.eclipse.emf.ecp.view.core.swt.test.model.SimpleTestObject#getMyEnum <em>My
121:          * Enum</em>}' attribute.
122:          * <!-- begin-user-doc -->
123:          * <!-- end-user-doc -->
124:          *
125:          * @param value the new value of the '<em>My Enum</em>' attribute.
126:          * @see org.eclipse.emf.ecp.view.core.swt.test.model.TestEnum
127:          * @see #getMyEnum()
128:          * @generated
129:          */
130:         void setMyEnum(TestEnum value);
131:
132:         /**
133:          * Returns the value of the '<em><b>Inner</b></em>' containment reference.
134:          * <!-- begin-user-doc -->
135:          * <!-- end-user-doc -->
136:          *
137:          * @return the value of the '<em>Inner</em>' containment reference.
138:          * @see #setInner(InnerObject)
139:          * @see org.eclipse.emf.ecp.view.core.swt.test.model.TestPackage#getSimpleTestObject_Inner()
140:          * @model containment="true"
141:          * @generated
142:          */
143:         InnerObject getInner();
144:
145:         /**
146:          * Sets the value of the '{@link org.eclipse.emf.ecp.view.core.swt.test.model.SimpleTestObject#getInner
147:          * <em>Inner</em>}' containment reference.
148:          * <!-- begin-user-doc -->
149:          * <!-- end-user-doc -->
150:          *
151:          * @param value the new value of the '<em>Inner</em>' containment reference.
152:          * @see #getInner()
153:          * @generated
154:          */
155:         void setInner(InnerObject value);
156:
157: } // SimpleTestObject