Package org.web3d.vrml.sav
Interface ErrorHandler
- All Superinterfaces:
org.j3d.util.ErrorReporter
- All Known Implementing Classes:
AWTConsoleWindow
,SwingConsoleWindow
public interface ErrorHandler
extends org.j3d.util.ErrorReporter
Receiver of notifications from the VRML document about node declaration
information.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Set the document locator that can be used by the implementing code to find out information about the current line information.Methods inherited from interface org.j3d.util.ErrorReporter
errorReport, fatalErrorReport, messageReport, partialReport, warningReport
-
Method Details
-
setDocumentLocator
Set the document locator that can be used by the implementing code to find out information about the current line information. This method is called by the parser to your code to give you a locator to work with. If this has not been set by the timestartDocument()
has been called, you can assume that you will not have one available.- Parameters:
loc
- The locator instance to use
-