Skip to content

Package: VTMandatoryStyleProperty

VTMandatoryStyleProperty

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.mandatory.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: * <ul>
26: * <li>
27: * {@link org.eclipse.emf.ecp.view.template.style.mandatory.model.VTMandatoryStyleProperty#isHighliteMandatoryFields
28: * <em>Highlite Mandatory Fields</em>}</li>
29: * <li>{@link org.eclipse.emf.ecp.view.template.style.mandatory.model.VTMandatoryStyleProperty#getMandatoryMarker <em>
30: * Mandatory Marker</em>}</li>
31: * </ul>
32: * </p>
33: *
34: * @see org.eclipse.emf.ecp.view.template.style.mandatory.model.VTMandatoryPackage#getMandatoryStyleProperty()
35: * @model
36: * @generated
37: */
38: public interface VTMandatoryStyleProperty extends VTStyleProperty {
39:         /**
40:          * Returns the value of the '<em><b>Highlite Mandatory Fields</b></em>' attribute.
41:          * The default value is <code>"true"</code>.
42:          * <!-- begin-user-doc -->
43:          * <p>
44:          * If the meaning of the '<em>Highlite Mandatory Fields</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>Highlite Mandatory Fields</em>' attribute.
50:          * @see #setHighliteMandatoryFields(boolean)
51:          * @see org.eclipse.emf.ecp.view.template.style.mandatory.model.VTMandatoryPackage#getMandatoryStyleProperty_HighliteMandatoryFields()
52:          * @model default="true"
53:          * @generated
54:          */
55:         boolean isHighliteMandatoryFields();
56:
57:         /**
58:          * Sets the value of the '
59:          * {@link org.eclipse.emf.ecp.view.template.style.mandatory.model.VTMandatoryStyleProperty#isHighliteMandatoryFields
60:          * <em>Highlite Mandatory Fields</em>}' attribute.
61:          * <!-- begin-user-doc -->
62:          * <!-- end-user-doc -->
63:          *
64:          * @param value the new value of the '<em>Highlite Mandatory Fields</em>' attribute.
65:          * @see #isHighliteMandatoryFields()
66:          * @generated
67:          */
68:         void setHighliteMandatoryFields(boolean value);
69:
70:         /**
71:          * Returns the value of the '<em><b>Mandatory Marker</b></em>' attribute.
72:          * The default value is <code>"*"</code>.
73:          * <!-- begin-user-doc -->
74:          * <p>
75:          * If the meaning of the '<em>Mandatory Marker</em>' attribute isn't clear, there really should be more of a
76:          * description here...
77:          * </p>
78:          * <!-- end-user-doc -->
79:          *
80:          * @return the value of the '<em>Mandatory Marker</em>' attribute.
81:          * @see #setMandatoryMarker(String)
82:          * @see org.eclipse.emf.ecp.view.template.style.mandatory.model.VTMandatoryPackage#getMandatoryStyleProperty_MandatoryMarker()
83:          * @model default="*"
84:          * @generated
85:          */
86:         String getMandatoryMarker();
87:
88:         /**
89:          * Sets the value of the '
90:          * {@link org.eclipse.emf.ecp.view.template.style.mandatory.model.VTMandatoryStyleProperty#getMandatoryMarker
91:          * <em>Mandatory Marker</em>}' attribute.
92:          * <!-- begin-user-doc -->
93:          * <!-- end-user-doc -->
94:          *
95:          * @param value the new value of the '<em>Mandatory Marker</em>' attribute.
96:          * @see #getMandatoryMarker()
97:          * @generated
98:          */
99:         void setMandatoryMarker(String value);
100:
101: } // VTMandatoryStyleProperty