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