Skip to content

Package: VTreeMasterDetail

VTreeMasterDetail

Coverage

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