Subversion Repository Public Repository

litesoft

Diff Revisions 947 vs 948 for /trunk/GWT_Sandbox/InitFrom/src/org/litesoft/initfrom/server/pos/RestrictedResource.java

Diff revisions: vs.
  @@ -3,33 +3,27 @@
3 3 import org.litesoft.core.util.*;
4 4 import org.litesoft.orsup.transact.*;
5 5
6 - public class RestrictedResource extends RestrictedResourceGO
7 - {
8 - public RestrictedResource( Transaction pTransaction )
9 - {
6 + public class RestrictedResource extends RestrictedResourceGO {
7 + public RestrictedResource( Transaction pTransaction ) {
10 8 super( pTransaction );
11 9 }
12 10
13 - public RestrictedResource( ConstructionControl pConstructionControl )
14 - {
11 + public RestrictedResource( ConstructionControl pConstructionControl ) {
15 12 super( pConstructionControl );
16 13 }
17 14
18 15 @Override
19 - public String getPhone()
20 - {
16 + public String getPhone() {
21 17 return null; // Todo: xxx
22 18 }
23 19
24 20 @Override
25 - protected void LLclearPhone()
26 - {
21 + protected void LLclearPhone() {
27 22 // Todo: xxx
28 23 }
29 24
30 25 @Override
31 - protected void LLsetPhone( String pPhone )
32 - {
26 + protected void LLsetPhone( String pPhone ) {
33 27 // Todo: xxx
34 28 }
35 29 }