* Creates a new <code>TableActions</code> instance for the specified <code>DocDefTable</code>.
*/
TableActions(DocDefTable table) {
this.table = table;
TableRowOrderControl c = table.getModel().getRowOrderControl();
this.rowOrderActions = new TableRowOrderControlActions(table.getTable(), c) {
@Override
protected boolean isEnabled() {
return !TableActions.this.table.isReadOnly();
}