users@jaxb.java.net

Serializable and Cloneable implements in a external customization file

From: Marcos <marcos_at_softingsystems.com.br>
Date: Fri, 12 Jan 2007 13:33:55 -0300

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