Skip to content

Package: VReadOnlyColumnConfiguration

VReadOnlyColumnConfiguration

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:
19: /**
20: * <!-- begin-user-doc -->
21: * A representation of the model object '<em><b>Read Only Column Configuration</b></em>'.
22: * <!-- end-user-doc -->
23: *
24: * <p>
25: * The following features are supported:
26: * </p>
27: * <ul>
28: * <li>{@link org.eclipse.emf.ecp.view.spi.table.model.VReadOnlyColumnConfiguration#getColumnDomainReferences <em>Column
29: * Domain References</em>}</li>
30: * </ul>
31: *
32: * @see org.eclipse.emf.ecp.view.spi.table.model.VTablePackage#getReadOnlyColumnConfiguration()
33: * @model
34: * @generated
35: */
36: public interface VReadOnlyColumnConfiguration extends VTableColumnConfiguration {
37:         /**
38:          * Returns the value of the '<em><b>Column Domain References</b></em>' reference list.
39:          * The list contents are of type {@link org.eclipse.emf.ecp.view.spi.model.VDomainModelReference}.
40:          * <!-- begin-user-doc -->
41:          * <p>
42:          * If the meaning of the '<em>Column Domain References</em>' reference list isn't clear, there really should be more
43:          * of a description here...
44:          * </p>
45:          * <!-- end-user-doc -->
46:          *
47:          * @return the value of the '<em>Column Domain References</em>' reference list.
48:          * @see org.eclipse.emf.ecp.view.spi.table.model.VTablePackage#getReadOnlyColumnConfiguration_ColumnDomainReferences()
49:          * @model
50:          * @generated
51:          */
52:         EList<VDomainModelReference> getColumnDomainReferences();
53:
54: } // VReadOnlyColumnConfiguration