Skip to content

Package: VTableDomainModelReference

VTableDomainModelReference

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.spi.table.model;
15:
16: import org.eclipse.emf.common.util.EList;
17: import org.eclipse.emf.ecp.view.spi.model.VDomainModelReference;
18: import org.eclipse.emf.ecp.view.spi.model.VFeaturePathDomainModelReference;
19:
20: /**
21: * <!-- begin-user-doc -->
22: * A representation of the model object '<em><b>Domain Model Reference</b></em>'.
23: * <!-- end-user-doc -->
24: *
25: * <p>
26: * The following features are supported:
27: * </p>
28: * <ul>
29: * <li>{@link org.eclipse.emf.ecp.view.spi.table.model.VTableDomainModelReference#getColumnDomainModelReferences
30: * <em>Column Domain Model References</em>}</li>
31: * <li>{@link org.eclipse.emf.ecp.view.spi.table.model.VTableDomainModelReference#getDomainModelReference <em>Domain
32: * Model Reference</em>}</li>
33: * </ul>
34: *
35: * @see org.eclipse.emf.ecp.view.spi.table.model.VTablePackage#getTableDomainModelReference()
36: * @model annotation="http://www.eclipse.org/emf/2002/Ecore constraints='resolveable'"
37: * @generated
38: */
39: public interface VTableDomainModelReference extends VFeaturePathDomainModelReference {
40:
41:         /**
42:          * Returns the value of the '<em><b>Column Domain Model References</b></em>' containment reference list.
43:          * The list contents are of type {@link org.eclipse.emf.ecp.view.spi.model.VDomainModelReference}.
44:          * <!-- begin-user-doc -->
45:          * <p>
46:          * If the meaning of the '<em>Column Domain Model References</em>' containment reference list isn't clear, there
47:          * really should be more of a description here...
48:          * </p>
49:          * <!-- end-user-doc -->
50:          *
51:          * @return the value of the '<em>Column Domain Model References</em>' containment reference list.
52:          * @see org.eclipse.emf.ecp.view.spi.table.model.VTablePackage#getTableDomainModelReference_ColumnDomainModelReferences()
53:          * @model containment="true"
54:          * @generated
55:          */
56:         EList<VDomainModelReference> getColumnDomainModelReferences();
57:
58:         /**
59:          * Returns the value of the '<em><b>Domain Model Reference</b></em>' containment reference.
60:          * <!-- begin-user-doc -->
61:          * <p>
62:          * If the meaning of the '<em>Domain Model Reference</em>' containment reference isn't clear, there really should be
63:          * more of a description here...
64:          * </p>
65:          *
66:          * @since 1.5
67:          * <!-- end-user-doc -->
68:          * @return the value of the '<em>Domain Model Reference</em>' containment reference.
69:          * @see #setDomainModelReference(VDomainModelReference)
70:          * @see org.eclipse.emf.ecp.view.spi.table.model.VTablePackage#getTableDomainModelReference_DomainModelReference()
71:          * @model containment="true"
72:          * @generated
73:          */
74:         VDomainModelReference getDomainModelReference();
75:
76:         /**
77:          * Sets the value of the
78:          * '{@link org.eclipse.emf.ecp.view.spi.table.model.VTableDomainModelReference#getDomainModelReference <em>Domain
79:          * Model Reference</em>}' containment reference.
80:          * <!-- begin-user-doc -->
81:          *
82:          * @since 1.5
83:          * <!-- end-user-doc -->
84:          * @param value the new value of the '<em>Domain Model Reference</em>' containment reference.
85:          * @see #getDomainModelReference()
86:          * @generated
87:          */
88:         void setDomainModelReference(VDomainModelReference value);
89: } // VTableDomainModelReference