On dim., 2011-04-10 at 07:10 +0100, Simon Nash wrote:
>
> Hi Antonio,
> Please can you post the Java code for myObj and myObjChild. Thanks.
>
>
Hi, thank you for the response.
My code is:
public class Avenant implements Serializable{
/**
*
*/
private static final long serialVersionUID = -4086312879555658070L;
private long id;
private String commentair;
private TypeAvenant type;
...// getters and setters
}
and
public class AvenantContr extends Avenant {
/**
*
*/
private static final long serialVersionUID = -5534459853405874814L;
private ContratCollectif contrat;
...// getters and setters
}
Antonio