Subversion Repository Public Repository

litesoft

Diff Revisions 947 vs 948 for /trunk/GWT_Sandbox/InitFrom/src/org/litesoft/initfrom/client/boviews/TaskViewGO.java

Diff revisions: vs.
  @@ -7,158 +7,127 @@
7 7 */
8 8 public abstract class TaskViewGO
9 9 extends ViewObject<TaskView>
10 - implements TaskViewNames
11 - {
10 + implements TaskViewNames {
12 11 @Deprecated
13 - protected TaskViewGO()
14 - {
12 + protected TaskViewGO() {
15 13 super( TaskViewMetaData.getInstance() );
16 14 }
17 15
18 - protected TaskViewGO( boolean pNew, TransactionSet pTransactionSet )
19 - {
16 + protected TaskViewGO( boolean pNew, TransactionSet pTransactionSet ) {
20 17 super( TaskViewMetaData.getInstance(), pNew, pTransactionSet );
21 18 }
22 19
23 20 private Long mID;
24 21
25 22 @Override
26 - public Long getID()
27 - {
23 + public Long getID() {
28 24 return mID;
29 25 }
30 26
31 27 @Override
32 - public void setID( Long pID )
33 - {
34 - if ( verifyMutabilityOnChange( aID, pID ) )
35 - {
28 + public void setID( Long pID ) {
29 + if ( verifyMutabilityOnChange( aID, pID ) ) {
36 30 LLsetID( pID );
37 31 }
38 32 }
39 33
40 - protected void LLsetID( Long pID )
41 - {
34 + protected void LLsetID( Long pID ) {
42 35 mID = pID;
43 36 }
44 37
45 38 private String mCreatorFullName;
46 39
47 - public String getCreatorFullName()
48 - {
40 + public String getCreatorFullName() {
49 41 return mCreatorFullName;
50 42 }
51 43
52 - public void setCreatorFullName( String pCreatorFullName )
53 - {
54 - if ( verifyMutabilityOnChange( aCreatorFullName, pCreatorFullName ) )
55 - {
44 + public void setCreatorFullName( String pCreatorFullName ) {
45 + if ( verifyMutabilityOnChange( aCreatorFullName, pCreatorFullName ) ) {
56 46 LLsetCreatorFullName( pCreatorFullName );
57 47 }
58 48 }
59 49
60 - protected void LLsetCreatorFullName( String pCreatorFullName )
61 - {
50 + protected void LLsetCreatorFullName( String pCreatorFullName ) {
62 51 mCreatorFullName = pCreatorFullName;
63 52 }
64 53
65 54 private String mDescription;
66 55
67 - public String getDescription()
68 - {
56 + public String getDescription() {
69 57 return mDescription;
70 58 }
71 59
72 - public void setDescription( String pDescription )
73 - {
74 - if ( verifyMutabilityOnChange( aDescription, pDescription ) )
75 - {
60 + public void setDescription( String pDescription ) {
61 + if ( verifyMutabilityOnChange( aDescription, pDescription ) ) {
76 62 LLsetDescription( pDescription );
77 63 }
78 64 }
79 65
80 - protected void LLsetDescription( String pDescription )
81 - {
66 + protected void LLsetDescription( String pDescription ) {
82 67 mDescription = pDescription;
83 68 }
84 69
85 70 private Boolean mIsDone;
86 71
87 - public Boolean getIsDone()
88 - {
72 + public Boolean getIsDone() {
89 73 return mIsDone;
90 74 }
91 75
92 - public void setIsDone( Boolean pIsDone )
93 - {
94 - if ( verifyMutabilityOnChange( aIsDone, pIsDone ) )
95 - {
76 + public void setIsDone( Boolean pIsDone ) {
77 + if ( verifyMutabilityOnChange( aIsDone, pIsDone ) ) {
96 78 LLsetIsDone( pIsDone );
97 79 }
98 80 }
99 81
100 - protected void LLsetIsDone( Boolean pIsDone )
101 - {
82 + protected void LLsetIsDone( Boolean pIsDone ) {
102 83 mIsDone = pIsDone;
103 84 }
104 85
105 86 private String mName;
106 87
107 - public String getName()
108 - {
88 + public String getName() {
109 89 return mName;
110 90 }
111 91
112 - public void setName( String pName )
113 - {
114 - if ( verifyMutabilityOnChange( aName, pName ) )
115 - {
92 + public void setName( String pName ) {
93 + if ( verifyMutabilityOnChange( aName, pName ) ) {
116 94 LLsetName( pName );
117 95 }
118 96 }
119 97
120 - protected void LLsetName( String pName )
121 - {
98 + protected void LLsetName( String pName ) {
122 99 mName = pName;
123 100 }
124 101
125 102 private Float mPriority;
126 103
127 - public Float getPriority()
128 - {
104 + public Float getPriority() {
129 105 return mPriority;
130 106 }
131 107
132 - public void setPriority( Float pPriority )
133 - {
134 - if ( verifyMutabilityOnChange( aPriority, pPriority ) )
135 - {
108 + public void setPriority( Float pPriority ) {
109 + if ( verifyMutabilityOnChange( aPriority, pPriority ) ) {
136 110 LLsetPriority( pPriority );
137 111 }
138 112 }
139 113
140 - protected void LLsetPriority( Float pPriority )
141 - {
114 + protected void LLsetPriority( Float pPriority ) {
142 115 mPriority = pPriority;
143 116 }
144 117
145 118 private String mStoryName;
146 119
147 - public String getStoryName()
148 - {
120 + public String getStoryName() {
149 121 return mStoryName;
150 122 }
151 123
152 - public void setStoryName( String pStoryName )
153 - {
154 - if ( verifyMutabilityOnChange( aStoryName, pStoryName ) )
155 - {
124 + public void setStoryName( String pStoryName ) {
125 + if ( verifyMutabilityOnChange( aStoryName, pStoryName ) ) {
156 126 LLsetStoryName( pStoryName );
157 127 }
158 128 }
159 129
160 - protected void LLsetStoryName( String pStoryName )
161 - {
130 + protected void LLsetStoryName( String pStoryName ) {
162 131 mStoryName = pStoryName;
163 132 }
164 133 }