Skip to content

Package: VTLabelWrapStyleProperty

VTLabelWrapStyleProperty

Coverage

1: /**
2: * Copyright (c) 2011-2018 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: * Johannes Faltermeier - initial API and implementation
13: */
14: package org.eclipse.emf.ecp.view.template.style.wrap.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>Label Wrap Style Property</b></em>'.
21: *
22: * @since 1.17
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.wrap.model.VTLabelWrapStyleProperty#isWrapLabel <em>Wrap
30: * Label</em>}</li>
31: * </ul>
32: *
33: * @see org.eclipse.emf.ecp.view.template.style.wrap.model.VTWrapPackage#getLabelWrapStyleProperty()
34: * @model
35: * @generated
36: */
37: public interface VTLabelWrapStyleProperty extends VTStyleProperty {
38:         /**
39:          * Returns the value of the '<em><b>Wrap Label</b></em>' attribute.
40:          * <!-- begin-user-doc -->
41:          * <p>
42:          * If the meaning of the '<em>Wrap Label</em>' attribute isn't clear,
43:          * there really should be more of a description here...
44:          * </p>
45:          * <!-- end-user-doc -->
46:          *
47:          * @return the value of the '<em>Wrap Label</em>' attribute.
48:          * @see #setWrapLabel(boolean)
49:          * @see org.eclipse.emf.ecp.view.template.style.wrap.model.VTWrapPackage#getLabelWrapStyleProperty_WrapLabel()
50:          * @model
51:          * @generated
52:          */
53:         boolean isWrapLabel();
54:
55:         /**
56:          * Sets the value of the
57:          * '{@link org.eclipse.emf.ecp.view.template.style.wrap.model.VTLabelWrapStyleProperty#isWrapLabel <em>Wrap
58:          * Label</em>}' attribute.
59:          * <!-- begin-user-doc -->
60:          * <!-- end-user-doc -->
61:          *
62:          * @param value the new value of the '<em>Wrap Label</em>' attribute.
63:          * @see #isWrapLabel()
64:          * @generated
65:          */
66:         void setWrapLabel(boolean value);
67:
68: } // VTLabelWrapStyleProperty