Skip to content

Package: Test4

Test4

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>Test4</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.Test4#getDerived <em>Derived</em>}</li>
26: * </ul>
27: *
28: * @see org.eclipse.emf.ecp.common.test.model.TestPackage#getTest4()
29: * @model
30: * @generated
31: */
32: public interface Test4 extends Base {
33:
34:         String KEY = "DERIVED";
35:
36:         /**
37:          * Returns the value of the '<em><b>Derived</b></em>' attribute.
38:          * <!-- begin-user-doc -->
39:          * <p>
40:          * If the meaning of the '<em>Derived</em>' attribute isn't clear,
41:          * there really should be more of a description here...
42:          * </p>
43:          * <!-- end-user-doc -->
44:          *
45:          * @return the value of the '<em>Derived</em>' attribute.
46:          * @see #setDerived(String)
47:          * @see org.eclipse.emf.ecp.common.test.model.TestPackage#getTest4_Derived()
48:          * @model transient="true" volatile="true" derived="true"
49:          * @generated
50:          */
51:         String getDerived();
52:
53:         /**
54:          * Sets the value of the '{@link org.eclipse.emf.ecp.common.test.model.Test4#getDerived <em>Derived</em>}'
55:          * attribute.
56:          * <!-- begin-user-doc -->
57:          * <!-- end-user-doc -->
58:          *
59:          * @param value the new value of the '<em>Derived</em>' attribute.
60:          * @see #getDerived()
61:          * @generated
62:          */
63:         void setDerived(String value);
64:
65: } // Test4