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

[Table of Contents]

InspectPageInterface


Implemented by:
EditPageInterface
D2WInspectPage
Package:
com.apple.yellow.directtoweb

Interface Description



This interface is the return value for the D2W inspectPageForEntityNamed method that creates an inspect page. The methods defined by this interface initialize the newly created page.

Method Types


Managing the Next Page Parameters
setNextPage
setNextPageDelegate

Setting the Object
setObject


Methods



setNextPage


abstract public void setNextPage(WOComponent nextPage)

Sets the page that is displayed when the user clicks Return in the inspect page. If the new page needs to be initialized, set the next page delegate instead.

See Also:
setNextPageDelegate



setNextPageDelegate


public abstract void setNextPageDelegate(NextPageDelegate nextPageDelegate)

Sets the receiver's next page delegate to nextPageDelegate. When the user clicks Return in the inspect page, Direct to Web invokes the nextPage method on the next page delegate.

See Also:
NextPageDelegate



setObject


abstract public void setObject(EOEnterpriseObject anObject)

Sets the object displayed by the inspect page.


[Table of Contents]