Skip to content

Package: Test3

Test3

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: * Johannes Faltermeier - initial API and implementation
13: */
14: package org.eclipse.emf.ecp.common.test.model;
15:
16: /**
17: * <!-- begin-user-doc -->
18: * A representation of the model object '<em><b>Test3</b></em>'.
19: * <!-- end-user-doc -->
20: *
21: * <p>
22: * The following features are supported:
23: * </p>
24: * <ul>
25: * <li>{@link org.eclipse.emf.ecp.common.test.model.Test3#getDerived <em>Derived</em>}</li>
26: * </ul>
27: *
28: * @see org.eclipse.emf.ecp.common.test.model.TestPackage#getTest3()
29: * @model
30: * @generated
31: */
32: public interface Test3 extends Base {
33:         /**
34:          * Returns the value of the '<em><b>Derived</b></em>' attribute.
35:          * <!-- begin-user-doc -->
36:          * <p>
37:          * If the meaning of the '<em>Derived</em>' attribute isn't clear,
38:          * there really should be more of a description here...
39:          * </p>
40:          * <!-- end-user-doc -->
41:          *
42:          * @return the value of the '<em>Derived</em>' attribute.
43:          * @see #isSetDerived()
44:          * @see #unsetDerived()
45:          * @see #setDerived(String)
46:          * @see org.eclipse.emf.ecp.common.test.model.TestPackage#getTest3_Derived()
47:          * @model unsettable="true" transient="true" volatile="true" derived="true"
48:          * @generated
49:          */
50:         String getDerived();
51:
52:         /**
53:          * Sets the value of the '{@link org.eclipse.emf.ecp.common.test.model.Test3#getDerived <em>Derived</em>}'
54:          * attribute.
55:          * <!-- begin-user-doc -->
56:          * <!-- end-user-doc -->
57:          *
58:          * @param value the new value of the '<em>Derived</em>' attribute.
59:          * @see #isSetDerived()
60:          * @see #unsetDerived()
61:          * @see #getDerived()
62:          * @generated
63:          */
64:         void setDerived(String value);
65:
66:         /**
67:          * Unsets the value of the '{@link org.eclipse.emf.ecp.common.test.model.Test3#getDerived <em>Derived</em>}'
68:          * attribute.
69:          * <!-- begin-user-doc -->
70:          * <!-- end-user-doc -->
71:          *
72:          * @see #isSetDerived()
73:          * @see #getDerived()
74:          * @see #setDerived(String)
75:          * @generated
76:          */
77:         void unsetDerived();
78:
79:         /**
80:          * Returns whether the value of the '{@link org.eclipse.emf.ecp.common.test.model.Test3#getDerived <em>Derived</em>}
81:          * ' attribute is set.
82:          * <!-- begin-user-doc -->
83:          * <!-- end-user-doc -->
84:          *
85:          * @return whether the value of the '<em>Derived</em>' attribute is set.
86:          * @see #unsetDerived()
87:          * @see #getDerived()
88:          * @see #setDerived(String)
89:          * @generated
90:          */
91:         boolean isSetDerived();
92:
93: } // Test3