Package org.apache.xmlbeans.impl.config
Class PrePostExtensionImpl
java.lang.Object
org.apache.xmlbeans.impl.config.PrePostExtensionImpl
- All Implemented Interfaces:
PrePostExtension
public class PrePostExtensionImpl extends Object implements PrePostExtension
-
Field Summary
Fields inherited from interface org.apache.xmlbeans.PrePostExtension
OPERATION_INSERT, OPERATION_REMOVE, OPERATION_SET -
Constructor Summary
Constructors Constructor Description PrePostExtensionImpl() -
Method Summary
Modifier and Type Method Description booleancontains(String fullJavaName)StringgetHandlerNameForJavaSource()Returns the name of the handler in a form that can be put in a java source.NameSetgetNameSet()StringgetStaticHandler()Get the fully qualified static handler class name.booleanhasPostCall()Returns true if the static handler class has a preSet() method with the following signature:
public static void postSet(int, org.apache.xmlbeans.XmlObject, javax.xml.namespace.QName, boolean, int};booleanhasPreCall()Returns true if the static handler class has a preSet() method with the following signature:
public static boolean preSet(int, org.apache.xmlbeans.XmlObject, javax.xml.namespace.QName, boolean, int};
-
Constructor Details
-
PrePostExtensionImpl
public PrePostExtensionImpl()
-
-
Method Details
-
getNameSet
-
contains
-
hasPreCall
public boolean hasPreCall()Description copied from interface:PrePostExtensionReturns true if the static handler class has a preSet() method with the following signature:
public static boolean preSet(int, org.apache.xmlbeans.XmlObject, javax.xml.namespace.QName, boolean, int};- Specified by:
hasPreCallin interfacePrePostExtension
-
hasPostCall
public boolean hasPostCall()Description copied from interface:PrePostExtensionReturns true if the static handler class has a preSet() method with the following signature:
public static void postSet(int, org.apache.xmlbeans.XmlObject, javax.xml.namespace.QName, boolean, int};- Specified by:
hasPostCallin interfacePrePostExtension
-
getStaticHandler
Description copied from interface:PrePostExtensionGet the fully qualified static handler class name.- Specified by:
getStaticHandlerin interfacePrePostExtension
-
getHandlerNameForJavaSource
Returns the name of the handler in a form that can be put in a java source.
-