PATH |
ConfirmPageInterface
- Implemented by:
- D2WConfirmPage
- Package:
- com.webobjects.directtoweb
Interface Description
This interface is the return value for the confirmPageForEntityNamed
that creates a confirm page. The methods defined by this interface initialize the newly created page.
Method Types
- Managing the Next Page Parameters
- setCancelDelegate
- setConfirmDelegate
- Setting the Message
- setMessage
Methods
setCancelDelegate
public abstract void setCancelDelegate(NextPageDelegate cancelDelegate)
Sets the receiver's cancel delegate to
cancelDelegate
. When the user clicks No in the confirm page, Direct to Web invokes the nextPage
method on the cancel delegate.setConfirmDelegate
abstract public void setConfirmDelegate(NextPageDelegate confirmDelegate)
Sets the receiver's confirm delegate to
confirmDelegate
. When the user clicks Yes in the confirm page, Direct to Web invokes the nextPage
method on the confirm delegate.setMessage
public abstract void setMessage(String messageString)
Sets the message displayed by the confirm page.
© 2001 Apple Computer, Inc.