Subversion Repository Public Repository

litesoft

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

Diff revisions: vs.
  @@ -1,8 +1,8 @@
1 1 package com.temp.client.foundation.widget.input.support;
2 2
3 - import com.temp.client.foundation.widget.*;
4 - import com.temp.shared.externalization.*;
5 - import com.temp.shared.utils.*;
3 + import com.google.gwt.user.client.ui.HasEnabled;
4 + import com.temp.client.foundation.widget.NameToID;
5 + import com.temp.shared.externalization.E13nResolver;
6 6
7 7 /**
8 8 * An interface to a class that can be added to the FormEngine as part of the Focusable list.
  @@ -14,12 +14,12 @@
14 14 * <p/>
15 15 * The transition between the states is one way ('Builder' to 'Run') and is a result of the call to 'init'.
16 16 */
17 - public interface FormEngineMember extends Enableable
18 - {
17 + public interface FormEngineMember extends HasEnabled {
19 18 /**
20 19 * The 'Builder' to 'Run' state transition method fully "Builds" 'this'.
21 20 * <p/>
22 21 * Only callable ONCE and only in Builder Mode!
22 + *
23 23 * @param parentResolver
24 24 */
25 25 void init(E13nResolver parentResolver);