Index Topic Contents | |||
Previous Topic: EndStyleBvr Class Next Topic: EventCallbackObject Interface |
ErrorAndWarningReceiver Interface
public interface ErrorAndWarningReceiver extends java.lang.Object{ // Methods public abstract void handleError(int error, String s, Viewer v); public abstract void handleTickError(int error, String s, Viewer v); public abstract void handleTickWarning(int error, String s, Viewer v); public abstract void handleWarning(int error, String s, Viewer v); }This interface, in conjunction with Viewer.registerErrorAndWarningReceiver, allows the application to register an object that will have its methods called when errors and warnings occur in the DirectAnimation system.
ErrorAndWarningReceiver Methods
ErrorAndWarningReceiver Interface
handleErrorInvoked when an error occurs outside of the invocation of a tick(). In addition, ticking is halted.
public abstract void handleError(
int error,
String s,
Viewer v
);Parameters
- error
- The Win32 error code. Consult a Win32 reference for more information.
- s
- The error message.
- v
- The Viewer object on which the warning occurred.
ErrorAndWarningReceiver Interface
handleTickErrorInvoked specifically for error messages incurred inside of a tick. In addition, ticking is halted.
public abstract void handleTickError(
int error,
String s,
Viewer v
);Parameters
- error
- The Win32 error code. Consult a Win32 reference for more information.
- s
- The error message.
- v
- The Viewer object on which the error occurred.
ErrorAndWarningReceiver Interface
handleTickWarningInvoked specifically for warning messages incurred inside of a tick().
public abstract void handleTickWarning(
int error,
String s,
Viewer v
);Parameters
- error
- The Win32 error code. Consult a Win32 reference for more information.
- s
- The warning message.
- v
- The Viewer object on which the error occurred.
ErrorAndWarningReceiver Interface
handleWarningInvoked when a warning occurs outside of the invocation of a tick().
public abstract void HandleWarning(
int error,
String s,
Viewer v
);Parameters
- error
- The Win32 error code. Consult a Win32 reference for more information.
- s
- The warning message.
- v
- The Viewer object on which the error occurred.
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.