|
WebObjects 5.2.3 | ||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
This interface is used for error reporting and determining fetch limits. See the EOEditingContext, EODatabaseContext (EOAccess), and EODisplayGroup (EOInterface) class specifications for more information.
Message handlers are primarily used to implement exception handling in the interface layer's EODisplayGroup, and would not ordinarily be used in a command line tool or WebObjects application.
Message handlers are not required to provide implementations for all of the methods in the interface.
When you write a handler, you don't have to use the implements
keyword to specify that the object implements
the EOEditingContext.MessageHandler interface. Instead, simply use the EOEditingContext method setMessageHandler
method to assign your object as the EOEditingContext's handler and then declare and implement any subset of the methods
declared in the EOEditingContext.MessageHandler interface. An EOEditingContext can determine if the handler does not implement
a method and only attempts to invoke the methods the handler actually implements.
Method Summary | |
void |
editingContextPresentErrorMessage(EOEditingContext context,
String message)
Invoked by context , this method should present message to the user in whatever way is appropriate
(whether by opening an attention panel or printing the message in a terminal window, for example). |
boolean |
editingContextShouldContinueFetching(EOEditingContext context,
int count,
int originalLimit,
EOObjectStore objectStore)
Invoked by objectStore (such as an EOAccess layer EODatabaseContext) to allow the message handler for context
(often an interface layer EODisplayGroup) to prompt the user about whether or not to continue fetching the current result set. |
Method Detail |
public void editingContextPresentErrorMessage(EOEditingContext context, String message)
context
, this method should present message
to the user in whatever way is appropriate
(whether by opening an attention panel or printing the message in a terminal window, for example).
This message is sent only if the method is implemented.
context
- The target EOEditingContextmessage
- the text of the error messagepublic boolean editingContextShouldContinueFetching(EOEditingContext context, int count, int originalLimit, EOObjectStore objectStore)
objectStore
(such as an EOAccess layer EODatabaseContext) to allow the message handler for context
(often an interface layer EODisplayGroup) to prompt the user about whether or not to continue fetching the current result set.
The count
argument is the number of objects fetched so far. limit
is the original limit specified an EOFetchSpecification.
This message is sent only if the method is implemented.
context
- The target EOEditingContextcount
- the number of records which have been fetched so faroriginalLimit
- the limit originally specified by the EOFetchSpecificationobjectStore
- the provider of the fetched records
true
if context
should continue, false
if it should abort the fetch
|
Last updated Thu Oct 21 15:04:16 PDT 2004. | ||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |