Skip to content

Package: VLabel

VLabel

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.label.model;
15:
16: import org.eclipse.emf.ecp.view.spi.model.VContainedElement;
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>Label</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.spi.label.model.VLabel#getStyle <em>Style</em>}</li>
28: * <li>{@link org.eclipse.emf.ecp.view.spi.label.model.VLabel#getDomainModelReference <em>Domain Model
29: * Reference</em>}</li>
30: * </ul>
31: * </p>
32: *
33: * @see org.eclipse.emf.ecp.view.spi.label.model.VLabelPackage#getLabel()
34: * @model
35: * @generated
36: */
37: public interface VLabel extends VContainedElement {
38:         /**
39:          * Returns the value of the '<em><b>Style</b></em>' attribute.
40:          * The literals are from the enumeration {@link org.eclipse.emf.ecp.view.spi.label.model.VLabelStyle}.
41:          * <!-- begin-user-doc -->
42:          * <p>
43:          * If the meaning of the '<em>Style</em>' attribute isn't clear, there really should be more of a description
44:          * here...
45:          * </p>
46:          * <!-- end-user-doc -->
47:          *
48:          * @return the value of the '<em>Style</em>' attribute.
49:          * @see org.eclipse.emf.ecp.view.spi.label.model.VLabelStyle
50:          * @see #setStyle(VLabelStyle)
51:          * @see org.eclipse.emf.ecp.view.spi.label.model.VLabelPackage#getLabel_Style()
52:          * @model
53:          * @generated
54:          */
55:         VLabelStyle getStyle();
56:
57:         /**
58:          * Sets the value of the '{@link org.eclipse.emf.ecp.view.spi.label.model.VLabel#getStyle <em>Style</em>}'
59:          * attribute.
60:          * <!-- begin-user-doc -->
61:          * <!-- end-user-doc -->
62:          *
63:          * @param value the new value of the '<em>Style</em>' attribute.
64:          * @see org.eclipse.emf.ecp.view.spi.label.model.VLabelStyle
65:          * @see #getStyle()
66:          * @generated
67:          */
68:         void setStyle(VLabelStyle value);
69:
70:         /**
71:          * Returns the value of the '<em><b>Domain Model Reference</b></em>' containment reference.
72:          * <!-- begin-user-doc -->
73:          * <p>
74:          * If the meaning of the '<em>Domain Model Reference</em>' containment reference isn't clear, there really should be
75:          * more of a description here...
76:          * </p>
77:          *
78:          * @since 1.4
79:          * <!-- end-user-doc -->
80:          *
81:          * @return the value of the '<em>Domain Model Reference</em>' containment reference.
82:          * @see #setDomainModelReference(VDomainModelReference)
83:          * @see org.eclipse.emf.ecp.view.spi.label.model.VLabelPackage#getLabel_DomainModelReference()
84:          * @model containment="true"
85:          * @generated
86:          *
87:          */
88:         VDomainModelReference getDomainModelReference();
89:
90:         /**
91:          * Sets the value of the '{@link org.eclipse.emf.ecp.view.spi.label.model.VLabel#getDomainModelReference
92:          * <em>Domain Model Reference</em>}' containment reference.
93:          * <!-- begin-user-doc -->
94:          *
95:          * @since 1.4
96:          * <!-- end-user-doc -->
97:          *
98:          * @param value the new value of the '<em>Domain Model Reference</em>' containment reference.
99:          * @see #getDomainModelReference()
100:          * @generated
101:          */
102:         void setDomainModelReference(VDomainModelReference value);
103:
104: } // VLabel