public class ERDObjectSaveDelegate extends Object implements com.webobjects.directtoweb.NextPageDelegate
NextPageDelegate
implementation that saves the editing context of an enterprise
object before returning the next page. This can be particularly
handy for example if you want a user to confirm an action before
the editing context is committed, for example:
public WOComponent confirmSave() {
ConfirmPageInterface cpi = (ConfirmPageInterface)D2W.factory().pageForConfigurationNamed("ConfirmSaveUserChanges", session());
cpi.setConfirmDelegate(new ERXObjectSaveDelegate(user, context().page()));
cpi.setCancelDelegate(someCancelDelegate);
return (WOComponent)cpi;
}
This way if the user selects the confirm button the editing context
will be saved and they will be brought back to the current page.Constructor and Description |
---|
ERDObjectSaveDelegate(EOEnterpriseObject object,
WOComponent nextPage)
Public constructor
|
Modifier and Type | Method and Description |
---|---|
protected EOEditingContext |
editingContext()
returns the editing context of the object.
|
WOComponent |
nextPage(WOComponent sender)
Implementation of the NextPageDelegate interface
First saves the changes in the object's editing
context and then returns the nextPage.
|
protected EOEnterpriseObject |
object()
returns the object.
|
public ERDObjectSaveDelegate(EOEnterpriseObject object, WOComponent nextPage)
object
- to be savednextPage
- to be returnedprotected EOEnterpriseObject object()
protected EOEditingContext editingContext()
public WOComponent nextPage(WOComponent sender)
nextPage
in interface com.webobjects.directtoweb.NextPageDelegate
sender
- component calling the delegateCopyright © 2002 – 2024 Project Wonder.