Documentation Archive Developer
Search
PATH  Documentation > WebObjects 4.5 > Direct to Web

Table of Contents

ConfirmPageInterface


Implemented by:
D2WConfirmPage
Package:
com.apple.yellow.directtoweb

Interface Description



This interface is the return value for the D2W method 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.


Table of Contents