}
@Override
protected String compute()
{
final Column column = context( Column.class );
final Table table = column.nearest( Table.class );
for( final ForeignKey fk : table.getForeignKeys() )
{
for( final ForeignKey.ColumnAssociation fkcol : fk.getColumnAssociations() )
{
final String name = fkcol.getLocalColumn().content();
if( name != null && name.equals( column.getName().content() ) )
{
return Boolean.TRUE.toString();
}
}
}