1 /**
2 * <copyright>
3 * </copyright>
4 *
5 * $Id$
6 */
7 package BusinessDomainDsl;
8
9
10 /**
11 * <!-- begin-user-doc -->
12 * A representation of the model object '<em><b>Bool Property</b></em>'.
13 * <!-- end-user-doc -->
14 *
15 * <p>
16 * The following features are supported:
17 * <ul>
18 * <li>{@link BusinessDomainDsl.BoolProperty#isDefaultValue <em>Default Value</em>}</li>
19 * </ul>
20 * </p>
21 *
22 * @see BusinessDomainDsl.BusinessDomainDslPackage#getBoolProperty()
23 * @model
24 * @generated
25 */
26 public interface BoolProperty extends Property {
27 /**
28 * Returns the value of the '<em><b>Default Value</b></em>' attribute.
29 * The default value is <code>"false"</code>.
30 * <!-- begin-user-doc -->
31 * <p>
32 * If the meaning of the '<em>Default Value</em>' attribute isn't clear,
33 * there really should be more of a description here...
34 * </p>
35 * <!-- end-user-doc -->
36 * @return the value of the '<em>Default Value</em>' attribute.
37 * @see #setDefaultValue(boolean)
38 * @see BusinessDomainDsl.BusinessDomainDslPackage#getBoolProperty_DefaultValue()
39 * @model default="false"
40 * @generated
41 */
42 boolean isDefaultValue();
43
44 /**
45 * Sets the value of the '{@link BusinessDomainDsl.BoolProperty#isDefaultValue <em>Default Value</em>}' attribute.
46 * <!-- begin-user-doc -->
47 * <!-- end-user-doc -->
48 * @param value the new value of the '<em>Default Value</em>' attribute.
49 * @see #isDefaultValue()
50 * @generated
51 */
52 void setDefaultValue(boolean value);
53
54 } // BoolProperty