Skip to content

Package: VTTextControlEnablementStyleProperty

VTTextControlEnablementStyleProperty

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.textControlEnablement.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: *
22: * @since 1.5
23: * <!-- end-user-doc -->
24: *
25: * <p>
26: * The following features are supported:
27: * <ul>
28: * <li>
29: * {@link org.eclipse.emf.ecp.view.template.style.textControlEnablement.model.VTTextControlEnablementStyleProperty#isRenderDisableAsEditable
30: * <em>Render Disable As Editable</em>}</li>
31: * </ul>
32: * </p>
33: *
34: * @see org.eclipse.emf.ecp.view.template.style.textControlEnablement.model.VTTextControlEnablementPackage#getTextControlEnablementStyleProperty()
35: * @model
36: * @generated
37: */
38: public interface VTTextControlEnablementStyleProperty extends VTStyleProperty {
39:         /**
40:          * Returns the value of the '<em><b>Render Disable As Editable</b></em>' attribute.
41:          * The default value is <code>"false"</code>.
42:          * <!-- begin-user-doc -->
43:          * <p>
44:          * If the meaning of the '<em>Render Disable As Editable</em>' attribute isn't clear, there really should be more of
45:          * a description here...
46:          * </p>
47:          * <!-- end-user-doc -->
48:          *
49:          * @return the value of the '<em>Render Disable As Editable</em>' attribute.
50:          * @see #setRenderDisableAsEditable(boolean)
51:          * @see org.eclipse.emf.ecp.view.template.style.textControlEnablement.model.VTTextControlEnablementPackage#getTextControlEnablementStyleProperty_RenderDisableAsEditable()
52:          * @model default="false"
53:          * @generated
54:          */
55:         boolean isRenderDisableAsEditable();
56:
57:         /**
58:          * Sets the value of the '
59:          * {@link org.eclipse.emf.ecp.view.template.style.textControlEnablement.model.VTTextControlEnablementStyleProperty#isRenderDisableAsEditable
60:          * <em>Render Disable As Editable</em>}' attribute.
61:          * <!-- begin-user-doc -->
62:          * <!-- end-user-doc -->
63:          *
64:          * @param value the new value of the '<em>Render Disable As Editable</em>' attribute.
65:          * @see #isRenderDisableAsEditable()
66:          * @generated
67:          */
68:         void setRenderDisableAsEditable(boolean value);
69:
70: } // VTTextControlEnablementStyleProperty