final JAnnotationArrayMember pkjc = pkjcs.paramArray( "value" );
this.annotate( cm, pkjc, entity.getPrimaryKeyJoinColumn() );
}
if ( !entity.getSecondaryTable().isEmpty() )
{
final JAnnotationUse stlst = c.implClass.annotate( cm.ref( javax.persistence.SecondaryTables.class ) );
final JAnnotationArrayMember value = stlst.paramArray( "value" );
for ( SecondaryTable t : entity.getSecondaryTable() )
{
final JAnnotationUse st = value.annotate( cm.ref( javax.persistence.SecondaryTable.class ) );
if ( t.getCatalog() != null )