Package org.openbp.guiclient.model.item.itemfinder

Examples of org.openbp.guiclient.model.item.itemfinder.FinderEngine


     */
    public JaspiraEventHandlerCode present(JaspiraEvent je)
    {
      // Find the references and display them in the tree
      referenceObject = (ModelObject) je.getObject();
      FinderEngine finderEngine = new FinderEngineImpl();
      referenceList = finderEngine.createReferenceList(referenceObject, null);
      updateModel();

      // Update the refresh button
      refreshAction.setEnabled(true);
      clearListAction.setEnabled(referenceList != null);
View Full Code Here


     * @param jae Event
     * @return The event status code
     */
    public JaspiraEventHandlerCode refresh(JaspiraActionEvent jae)
    {
      FinderEngine finderEngine = new FinderEngineImpl();
      referenceList = finderEngine.createReferenceList(referenceObject, null);
      updateModel();

      clearListAction.setEnabled(referenceList != null);
      return EVENT_CONSUMED;
    }
View Full Code Here

TOP

Related Classes of org.openbp.guiclient.model.item.itemfinder.FinderEngine

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.