Subversion Repository Public Repository

litesoft

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package org.litesoft.GWT.forms.client;

import org.litesoft.rpcpassable.*;

public interface UiFormListener
{
    /**
     * Called when the form has fields and is added to the target container. You
     * will typically call {@link UiFormHandler#requestValues(String)} to ensure
     * the back end has started a transaction.
     */
    public void formRendered( UiFormHandler pUiFormHandler, RPCpassable pServicePeerXtra );

    /**
     * Called after the form is fully populated with values from the back end.
     */
    public void formValuesApplied( UiFormHandler pUiFormHandler, RPCpassable pServicePeerXtra );

    /**
     * Called when the form ErrorState changes.
     *
     * @param pFormHasErrors <code>true</code> if the form currently has errors
     */
    public void formErrorState( UiFormHandler pUiFormHandler, boolean pFormHasErrors );

    /**
     * Called when the form is modified (dirty) or set to a clean state.
     *
     * @param pFormHasChanges <code>true</code> if the committing the form
     *                        will result in a change on the back end
     */
    public void formChangeState( UiFormHandler pUiFormHandler, boolean pFormHasChanges );

    /**
     * Called when an action (i.e. button) on the form has been requested
     * (clicked). Allows you to veto the action to prevent it from being
     * executed on the back end.
     *
     * @return <code>true</code> to veto the Action
     */
    public boolean formActionRequested( UiFormHandler pUiFormHandler, String pActionID );

    /**
     * Called by the form service to indicate the Service Peer Successfully processed an ActionRequest.
     */
    public void formActionSucceeded( UiFormHandler pUiFormHandler, String pActionID, // todo: boolean pDataCommitted,
                                     RPCpassable pServicePeerXtra );

    /**
     * Called by the form service to indicate the form UI should be disposed.
     */
    public void formCloseRequested( UiFormHandler pUiFormHandler, RPCpassable pServicePeerXtra );
}

Commits for litesoft/trunk/Java/GWT/OldClient/src/org/litesoft/GWT/forms/client/UiFormListener.java

Diff revisions: vs.
Revision Author Commited Message
2 GeorgeS picture GeorgeS Sun 07 Feb, 2010 12:50:58 +0000