Antonio De Berardis wrote:
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
Hi Antonio,
There aren't any Java package declarations in these files.
Can you try adding package declarations to see if that makes
any difference to the problem?
Simon