jaxe
Interface ErrorHandlerIf

All Known Implementing Classes:
ErrorHandler

Deprecated. Use InterfaceGestionErreurs instead

@Deprecated
public interface ErrorHandlerIf

The Errorhandler shows the Errors to the Users. It can be overwritten to add better Errorhandling, like displaying Tips.

Author:
tasche

Method Summary
 void childNotAllowed(java.lang.String expr, JaxeElement parent, org.w3c.dom.Element defbalise)
          Deprecated. The childis not allowed in the Parent-Node
 void childNotAllowedInParentdef(org.w3c.dom.Element parentdef, org.w3c.dom.Element defbalise)
          Deprecated. A child was not inserted because it is not allowed in the parent-node
 void editNotAllowed(JaxeElement parent, org.w3c.dom.Element defbalise)
          Deprecated. The User tried to add an Element in an Node that is not editable
 void notInRootError(org.w3c.dom.Element defbalise)
          Deprecated. The User tried to add an Element before or after the Root-Element
 void textNotAllowed(JaxeElement element)
          Deprecated. It is not allowed to insert Text into this Element
 

Method Detail

notInRootError

void notInRootError(org.w3c.dom.Element defbalise)
Deprecated. 
The User tried to add an Element before or after the Root-Element

Parameters:
defbalise - Element the User tried to add

editNotAllowed

void editNotAllowed(JaxeElement parent,
                    org.w3c.dom.Element defbalise)
Deprecated. 
The User tried to add an Element in an Node that is not editable

Parameters:
parent - This node was edited
defbalise - This node was not inserted

childNotAllowedInParentdef

void childNotAllowedInParentdef(org.w3c.dom.Element parentdef,
                                org.w3c.dom.Element defbalise)
Deprecated. 
A child was not inserted because it is not allowed in the parent-node

Parameters:
parentdef - Parent
defbalise - Child that should have been inserted

childNotAllowed

void childNotAllowed(java.lang.String expr,
                     JaxeElement parent,
                     org.w3c.dom.Element defbalise)
Deprecated. 
The childis not allowed in the Parent-Node

Parameters:
expr - Expr what is allowed in the Parent-Node
parent - The Parent
defbalise - The child that should have been inserted

textNotAllowed

void textNotAllowed(JaxeElement element)
Deprecated. 
It is not allowed to insert Text into this Element

Parameters:
element - no Text allowed here