Subversion Repository Public Repository

litesoft

Diff Revisions 948 vs 950 for /trunk/Java/GWT/OldClient/src/org/litesoft/GWT/forms/client/nonpublic/FormInstanceComponentHandler.java

Diff revisions: vs.
  @@ -1,31 +1,31 @@
1 - // This Source Code is in the Public Domain per: http://unlicense.org
2 - package org.litesoft.GWT.forms.client.nonpublic;
3 -
4 - import org.litesoft.core.simpletypes.*;
5 -
6 - import java.io.*;
7 -
8 - /**
9 - * Implementations of this interface services the needs of a form instance's Components.
10 - */
11 - public interface FormInstanceComponentHandler {
12 - public void addActionAdapter( FormActionAdapter pActionAdapter );
13 -
14 - public void addAttributeAdapter( FormAttributeAdapter pAttributeAdapter );
15 -
16 - public void componentUpdatedValue( FormAttributeAdapter pAttributeAdapter, Serializable pCurrentValue );
17 -
18 - /**
19 - * Request the available ResourceKeyNameURLs by pAttributeAdapter.
20 - *
21 - * @param pCallback Not null!
22 - */
23 - public void requestResourceKeyNameURLs( FormAttributeAdapter pAttributeAdapter,
24 - ResourceKeyNameURLsAvailableCallback pCallback );
25 -
26 - public void actionRequested( FormActionAdapter pActionAdapter, boolean pInputAction );
27 -
28 - public void componentErrorState( boolean pErrorState );
29 -
30 - public void componentChangedState( boolean pChangedState );
31 - }
1 + // This Source Code is in the Public Domain per: http://unlicense.org
2 + package org.litesoft.GWT.forms.client.nonpublic;
3 +
4 + import org.litesoft.core.simpletypes.*;
5 +
6 + import java.io.*;
7 +
8 + /**
9 + * Implementations of this interface services the needs of a form instance's Components.
10 + */
11 + public interface FormInstanceComponentHandler {
12 + public void addActionAdapter( FormActionAdapter pActionAdapter );
13 +
14 + public void addAttributeAdapter( FormAttributeAdapter pAttributeAdapter );
15 +
16 + public void componentUpdatedValue( FormAttributeAdapter pAttributeAdapter, Serializable pCurrentValue );
17 +
18 + /**
19 + * Request the available ResourceKeyNameURLs by pAttributeAdapter.
20 + *
21 + * @param pCallback Not null!
22 + */
23 + public void requestResourceKeyNameURLs( FormAttributeAdapter pAttributeAdapter,
24 + ResourceKeyNameURLsAvailableCallback pCallback );
25 +
26 + public void actionRequested( FormActionAdapter pActionAdapter, boolean pInputAction );
27 +
28 + public void componentErrorState( boolean pErrorState );
29 +
30 + public void componentChangedState( boolean pChangedState );
31 + }