Module org.eclipse.persistence.sdo
Interface SDOClassGeneratorListener
public interface SDOClassGeneratorListener
Purpose: Optionally user can implement this interface to provide their own extra content to the generated source files.
-
Method Summary
Modifier and TypeMethodDescriptionvoidpreImplAttributes(StringBuffer buffer) This event will be triggered before the attribute declarations on the implementation classvoidpreImplClass(StringBuffer buffer) This event will be triggered before the class declaration on the implementation classvoidpreImplImports(StringBuffer buffer) This event will be triggered before the import declarations on the implementation classvoidpreImplPackage(StringBuffer buffer) This event will be triggered before the package declaration on the implementation classvoidpreInterfaceClass(StringBuffer buffer) This event will be triggered before the interface declaration on the interfacevoidpreInterfaceImports(StringBuffer buffer) This event will be triggered before the import declarations on the interfacevoidpreInterfacePackage(StringBuffer buffer) This event will be triggered before the package declaration on the interface
-
Method Details
-
preInterfacePackage
This event will be triggered before the package declaration on the interface- Parameters:
buffer- The current StringBuffer that can have content appended to it
-
preImplPackage
This event will be triggered before the package declaration on the implementation class- Parameters:
buffer- The current StringBuffer that can have content appended to it
-
preInterfaceImports
This event will be triggered before the import declarations on the interface- Parameters:
buffer- The current StringBuffer that can have content appended to it
-
preImplImports
This event will be triggered before the import declarations on the implementation class- Parameters:
buffer- The current StringBuffer that can have content appended to it
-
preInterfaceClass
This event will be triggered before the interface declaration on the interface- Parameters:
buffer- The current StringBuffer that can have content appended to it
-
preImplClass
This event will be triggered before the class declaration on the implementation class- Parameters:
buffer- The current StringBuffer that can have content appended to it
-
preImplAttributes
This event will be triggered before the attribute declarations on the implementation class- Parameters:
buffer- The current StringBuffer that can have content appended to it
-