m.annotate( cm.ref( javax.persistence.PostPersist.class ) );
}
if ( ms.getPostRemove() != null )
{
final JMethod m = this.getMethod( c, ms.getPostRemove().getMethodName() );
m.annotate( cm.ref( javax.persistence.PostRemove.class ) );
}
if ( ms.getPostUpdate() != null )
{
final JMethod m = this.getMethod( c, ms.getPostUpdate().getMethodName() );
m.annotate( cm.ref( javax.persistence.PostUpdate.class ) );