| uk.org.ponder.saxalizer.DeSAXalizerForbidder
DeSAXalizerForbidder | public interface DeSAXalizerForbidder (Code) | | An interface used to supply a callback to the DeSAXalizer. The DeSAXalizer makes
a call to the method of this interface before serializing every object in the subtree. If the
method returns false , serialization of the object and its entire subtree will
be skipped.
|
Method Summary | |
boolean | permitSerialization(String tag, Object o) Parameters: tag - The XML tag name that will be supplied for the target object. Parameters: o - The target object itself. |
permitSerialization | boolean permitSerialization(String tag, Object o)(Code) | | Parameters: tag - The XML tag name that will be supplied for the target object. Parameters: o - The target object itself. true if serialization of the target object is to be permitted. |
|
|