Skip to content

Package: VTControlLabelAlignmentStyleProperty

VTControlLabelAlignmentStyleProperty

Coverage

1: /**
2: * Copyright (c) 2011-2014 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: * EclipseSource Munich - initial API and implementation
13: */
14: package org.eclipse.emf.ecp.view.template.style.alignment.model;
15:
16: import org.eclipse.emf.ecp.view.template.model.VTStyleProperty;
17:
18: /**
19: * <!-- begin-user-doc -->
20: * A representation of the model object '<em><b>Control Label Alignment Style Property</b></em>'.
21: *
22: * @since 1.16
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.template.style.alignment.model.VTControlLabelAlignmentStyleProperty#getType
30: * <em>Type</em>}</li>
31: * </ul>
32: *
33: * @see org.eclipse.emf.ecp.view.template.style.alignment.model.VTAlignmentPackage#getControlLabelAlignmentStyleProperty()
34: * @model
35: * @generated
36: */
37: public interface VTControlLabelAlignmentStyleProperty extends VTStyleProperty {
38:         /**
39:          * Returns the value of the '<em><b>Type</b></em>' attribute.
40:          * The default value is <code>"LEFT"</code>.
41:          * The literals are from the enumeration
42:          * {@link org.eclipse.emf.ecp.view.template.style.alignment.model.AlignmentType}.
43:          * <!-- begin-user-doc -->
44:          * <p>
45:          * If the meaning of the '<em>Type</em>' attribute isn't clear,
46:          * there really should be more of a description here...
47:          * </p>
48:          * <!-- end-user-doc -->
49:          *
50:          * @return the value of the '<em>Type</em>' attribute.
51:          * @see org.eclipse.emf.ecp.view.template.style.alignment.model.AlignmentType
52:          * @see #setType(AlignmentType)
53:          * @see org.eclipse.emf.ecp.view.template.style.alignment.model.VTAlignmentPackage#getControlLabelAlignmentStyleProperty_Type()
54:          * @model default="LEFT" required="true"
55:          * @generated
56:          */
57:         AlignmentType getType();
58:
59:         /**
60:          * Sets the value of the
61:          * '{@link org.eclipse.emf.ecp.view.template.style.alignment.model.VTControlLabelAlignmentStyleProperty#getType
62:          * <em>Type</em>}' attribute.
63:          * <!-- begin-user-doc -->
64:          * <!-- end-user-doc -->
65:          *
66:          * @param value the new value of the '<em>Type</em>' attribute.
67:          * @see org.eclipse.emf.ecp.view.template.style.alignment.model.AlignmentType
68:          * @see #getType()
69:          * @generated
70:          */
71:         void setType(AlignmentType value);
72:
73: } // VTControlLabelAlignmentStyleProperty