Package com.esri.gpt.control.view

Examples of com.esri.gpt.control.view.PageCursorPanel


  _candidateGroups = new SelectableGroups();
  _selectableCollections = new SelectableCollections();

  // initialize the page cursor panel
  String sExpression = "#{ManageMetadataController.processAction}";
  _pageCursorPanel = new PageCursorPanel();
  _pageCursorPanel.setActionListenerExpression(sExpression);
  _pageCursorPanel.setPageCursor(getQueryResult().getPageCursor());
}
View Full Code Here


* Creates instance of the object.
* @param sActionExpression action expression
* @param sChangeExpression change expression
*/
public BaseHarvestController(String sActionExpression, String sChangeExpression) {
  _pageCursorPanel = new PageCursorPanel();
  _pageCursorPanel.setActionListenerExpression(sActionExpression);
  _pageCursorPanel.setChangeListenerExpression(sChangeExpression);
}
View Full Code Here

TOP

Related Classes of com.esri.gpt.control.view.PageCursorPanel

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.