Skip to content

Package: VViewProxy

VViewProxy

Coverage

1: /**
2: * Copyright (c) 2011-2014 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.view.spi.viewproxy.model;
15:
16: import org.eclipse.emf.ecp.view.spi.model.VContainedElement;
17:
18: /**
19: * <!-- begin-user-doc -->
20: * A representation of the model object '<em><b>View Proxy</b></em>'.
21: * <!-- end-user-doc -->
22: *
23: * <p>
24: * The following features are supported:
25: * <ul>
26: * <li>{@link org.eclipse.emf.ecp.view.spi.viewproxy.model.VViewProxy#getId <em>Id</em>}</li>
27: * </ul>
28: * </p>
29: *
30: * @see org.eclipse.emf.ecp.view.spi.viewproxy.model.VViewproxyPackage#getViewProxy()
31: * @model
32: * @generated
33: */
34: public interface VViewProxy extends VContainedElement {
35:         /**
36:          * Returns the value of the '<em><b>Id</b></em>' attribute.
37:          * <!-- begin-user-doc -->
38:          * <p>
39:          * If the meaning of the '<em>Id</em>' attribute isn't clear, there really should be more of a description here...
40:          * </p>
41:          * <!-- end-user-doc -->
42:          *
43:          * @return the value of the '<em>Id</em>' attribute.
44:          * @see #setId(String)
45:          * @see org.eclipse.emf.ecp.view.spi.viewproxy.model.VViewproxyPackage#getViewProxy_Id()
46:          * @model required="true"
47:          * @generated
48:          */
49:         String getId();
50:
51:         /**
52:          * Sets the value of the '{@link org.eclipse.emf.ecp.view.spi.viewproxy.model.VViewProxy#getId <em>Id</em>}'
53:          * attribute.
54:          * <!-- begin-user-doc -->
55:          * <!-- end-user-doc -->
56:          *
57:          * @param value the new value of the '<em>Id</em>' attribute.
58:          * @see #getId()
59:          * @generated
60:          */
61:         void setId(String value);
62:
63: } // VViewProxy