Skip to content

Package: VSingleColumnConfiguration

VSingleColumnConfiguration

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.ecp.view.spi.model.VDomainModelReference;
17:
18: /**
19: * <!-- begin-user-doc -->
20: * A representation of the model object '<em><b>Single Column Configuration</b></em>'.
21: *
22: * @since 1.13
23: *
24: * <!-- end-user-doc -->
25: *
26: * <p>
27: * The following features are supported:
28: * </p>
29: * <ul>
30: * <li>{@link org.eclipse.emf.ecp.view.spi.table.model.VSingleColumnConfiguration#getColumnDomainReference
31: * <em>Column Domain Reference</em>}</li>
32: * </ul>
33: *
34: * @see org.eclipse.emf.ecp.view.spi.table.model.VTablePackage#getSingleColumnConfiguration()
35: * @model interface="true" abstract="true"
36: * @generated
37: */
38: public interface VSingleColumnConfiguration extends VTableColumnConfiguration {
39:         /**
40:          * Returns the value of the '<em><b>Column Domain Reference</b></em>' reference.
41:          * <!-- begin-user-doc -->
42:          * <p>
43:          * If the meaning of the '<em>Column Domain Reference</em>' reference isn't clear,
44:          * there really should be more of a description here...
45:          * </p>
46:          * <!-- end-user-doc -->
47:          *
48:          * @return the value of the '<em>Column Domain Reference</em>' reference.
49:          * @see #setColumnDomainReference(VDomainModelReference)
50:          * @see org.eclipse.emf.ecp.view.spi.table.model.VTablePackage#getSingleColumnConfiguration_ColumnDomainReference()
51:          * @model required="true"
52:          * @generated
53:          */
54:         VDomainModelReference getColumnDomainReference();
55:
56:         /**
57:          * Sets the value of the
58:          * '{@link org.eclipse.emf.ecp.view.spi.table.model.VSingleColumnConfiguration#getColumnDomainReference <em>Column
59:          * Domain Reference</em>}' reference.
60:          * <!-- begin-user-doc -->
61:          * <!-- end-user-doc -->
62:          *
63:          * @param value the new value of the '<em>Column Domain Reference</em>' reference.
64:          * @see #getColumnDomainReference()
65:          * @generated
66:          */
67:         void setColumnDomainReference(VDomainModelReference value);
68:
69: } // VSingleColumnConfiguration