Subversion Repository Public Repository

litesoft

Diff Revisions 947 vs 948 for /trunk/GWT_Sandbox/FormEngine/src/com/temp/client/foundation/widget/input/support/FormEngineMember.java

Diff revisions: vs.
  @@ -1,8 +1,9 @@
1 1 package com.temp.client.foundation.widget.input.support;
2 2
3 - import com.google.gwt.user.client.ui.HasEnabled;
4 - import com.temp.client.foundation.widget.NameToID;
5 - import org.litesoft.core.util.externalization.E13nResolver;
3 + import org.litesoft.core.util.externalization.*;
4 +
5 + import com.google.gwt.user.client.ui.*;
6 + import com.temp.client.foundation.widget.*;
6 7
7 8 /**
8 9 * An interface to a class that can be added to the FormEngine as part of the Focusable list.
  @@ -22,7 +23,7 @@
22 23 *
23 24 * @param parentResolver
24 25 */
25 - void init(E13nResolver parentResolver);
26 + void init( E13nResolver parentResolver );
26 27
27 28 // Callable anytime:
28 29
  @@ -69,5 +70,5 @@
69 70
70 71 E13nResolver getE13nResolver();
71 72
72 - NameToID addNamedWidgetsTo(NameToID nameToID);
73 + NameToID addNamedWidgetsTo( NameToID nameToID );
73 74 }