Subversion Repository Public Repository

litesoft

Diff Revisions 947 vs 948 for /trunk/Java/GWT/Client/src/org/litesoft/GWT/client/view/TransientScreenProperties.java

Diff revisions: vs.
  @@ -4,25 +4,21 @@
4 4 /**
5 5 * Properties for the new screen which are not encoded in the url.
6 6 */
7 - public class TransientScreenProperties extends Properties
8 - {
7 + public class TransientScreenProperties extends Properties {
9 8 public final Property<String> WARNING = new Property<String>( this, "warning" );
10 9 public final Property<String> ERROR = new Property<String>( this, "error" );
11 10 // public final Property<ViewDef> PREVIOUS_SCREEN_DEF = new Property<ViewDef>(this, "previousScreenDef");
12 11
13 - public TransientScreenProperties()
14 - {
12 + public TransientScreenProperties() {
15 13 super();
16 14 }
17 15
18 - public TransientScreenProperties( Properties pCopyFrom )
19 - {
16 + public TransientScreenProperties( Properties pCopyFrom ) {
20 17 super( pCopyFrom );
21 18 }
22 19
23 20 @Override
24 - public TransientScreenProperties copy()
25 - {
21 + public TransientScreenProperties copy() {
26 22 return new TransientScreenProperties( this );
27 23 }
28 24 }