Skip to content

Package: VTAlignmentStyleProperty

VTAlignmentStyleProperty

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>Style Property</b></em>'.
21: * <!-- end-user-doc -->
22: *
23: * <p>
24: * The following features are supported:
25: * </p>
26: * <ul>
27: * <li>{@link org.eclipse.emf.ecp.view.template.style.alignment.model.VTAlignmentStyleProperty#getType
28: * <em>Type</em>}</li>
29: * </ul>
30: *
31: * @see org.eclipse.emf.ecp.view.template.style.alignment.model.VTAlignmentPackage#getAlignmentStyleProperty()
32: * @model
33: * @generated
34: */
35: public interface VTAlignmentStyleProperty extends VTStyleProperty {
36:         /**
37:          * Returns the value of the '<em><b>Type</b></em>' attribute.
38:          * The default value is <code>"LEFT"</code>.
39:          * The literals are from the enumeration
40:          * {@link org.eclipse.emf.ecp.view.template.style.alignment.model.AlignmentType}.
41:          * <!-- begin-user-doc -->
42:          * <p>
43:          * If the meaning of the '<em>Type</em>' attribute isn't clear, there really should be more of a description here...
44:          * </p>
45:          * <!-- end-user-doc -->
46:          *
47:          * @return the value of the '<em>Type</em>' attribute.
48:          * @see org.eclipse.emf.ecp.view.template.style.alignment.model.AlignmentType
49:          * @see #setType(AlignmentType)
50:          * @see org.eclipse.emf.ecp.view.template.style.alignment.model.VTAlignmentPackage#getAlignmentStyleProperty_Type()
51:          * @model default="LEFT" required="true"
52:          * @generated
53:          */
54:         AlignmentType getType();
55:
56:         /**
57:          * Sets the value of the
58:          * '{@link org.eclipse.emf.ecp.view.template.style.alignment.model.VTAlignmentStyleProperty#getType <em>Type</em>}'
59:          * attribute.
60:          * <!-- begin-user-doc -->
61:          * <!-- end-user-doc -->
62:          *
63:          * @param value the new value of the '<em>Type</em>' attribute.
64:          * @see org.eclipse.emf.ecp.view.template.style.alignment.model.AlignmentType
65:          * @see #getType()
66:          * @generated
67:          */
68:         void setType(AlignmentType value);
69:
70: } // VTAlignmentStyleProperty