use of com.cubrid.common.ui.query.action.NextAction in project cubrid-manager by CUBRID.
the class QueryExecuter method makeActions.
/**
* Fill paged action into query editor result toolbar
*
* @param toolBarManager ToolBarManager
*/
public void makeActions(ToolBarManager toolBarManager, Table resultTable) {
toolBarManager.add(filterResultContrItem);
toolBarManager.add(new Separator());
lastPageAction = new LastAction(this);
nextPageAction = new NextAction(this);
toolBarManager.add(nextPageAction);
toolBarManager.add(lastPageAction);
updateActions();
toolBarManager.update(true);
}
Aggregations