Hi All,
I would like see all of the classes generated by the binding compiler
implementing Serializable and Cloneable such as.:
/* Before the external customization.*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"sqlOrDefinitionIncludeOrImportDefinition"
})
@XmlRootElement(name = "loaderJob")
public class LoaderJob {
}
/* After the desired external customization.*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"sqlOrDefinitionIncludeOrImportDefinition"
})
@XmlRootElement(name = "loaderJob")
public class LoaderJob implements Serializable, Cloneable {
}
How do I perform that ?
I've read some earlier posts but I still have this doubt ...
Thank you very much
Marcos