Skip to content

Package: Foo

Foo

Coverage

1: /**
2: * Copyright (c) 2011-2016 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: */
13: package org.eclipse.emf.ecp.view.edapt.test.model;
14:
15: import org.eclipse.emf.ecore.EObject;
16:
17: /**
18: * <!-- begin-user-doc -->
19: * A representation of the model object '<em><b>Foo</b></em>'.
20: * <!-- end-user-doc -->
21: *
22: * <p>
23: * The following features are supported:
24: * </p>
25: * <ul>
26: * <li>{@link org.eclipse.emf.ecp.view.edapt.test.model.Foo#getBar <em>Bar</em>}</li>
27: * </ul>
28: *
29: * @see org.eclipse.emf.ecp.view.edapt.test.model.ModelPackage#getFoo()
30: * @model
31: * @generated
32: */
33: public interface Foo extends EObject {
34:         /**
35:          * Returns the value of the '<em><b>Bar</b></em>' attribute.
36:          * <!-- begin-user-doc -->
37:          * <p>
38:          * If the meaning of the '<em>Bar</em>' attribute isn't clear,
39:          * there really should be more of a description here...
40:          * </p>
41:          * <!-- end-user-doc -->
42:          *
43:          * @return the value of the '<em>Bar</em>' attribute.
44:          * @see #setBar(String)
45:          * @see org.eclipse.emf.ecp.view.edapt.test.model.ModelPackage#getFoo_Bar()
46:          * @model
47:          * @generated
48:          */
49:         String getBar();
50:
51:         /**
52:          * Sets the value of the '{@link org.eclipse.emf.ecp.view.edapt.test.model.Foo#getBar <em>Bar</em>}' attribute.
53:          * <!-- begin-user-doc -->
54:          * <!-- end-user-doc -->
55:          *
56:          * @param value the new value of the '<em>Bar</em>' attribute.
57:          * @see #getBar()
58:          * @generated
59:          */
60:         void setBar(String value);
61:
62: } // Foo