this.annotate( c, ms.getIdClass() );
}
if ( ms.getPostLoad() != null )
{
final JMethod m = this.getMethod( c, ms.getPostLoad().getMethodName() );
m.annotate( cm.ref( javax.persistence.PostLoad.class ) );
}
if ( ms.getPostPersist() != null )
{
final JMethod m = this.getMethod( c, ms.getPostPersist().getMethodName() );
m.annotate( cm.ref( javax.persistence.PostPersist.class ) );