Package net.sf.rej.gui.editor.iteration

Examples of net.sf.rej.gui.editor.iteration.FindFieldRefs


    SystemFacade.getInstance().search(iterator);
  }

  public void findFieldRefs(String className, String fieldName, Descriptor desc) {
    MainWindow.getInstance().getSearchTab().clear();
    AbstractIteratorAgent iterator = new FindFieldRefs(className, fieldName, desc);
    iterator.setProgressMonitor(SystemFacade.getInstance()
        .getProgressMonitor());
    MainWindow.getInstance().setTab(Tab.SEARCH);
    SystemFacade.getInstance().search(iterator);
  }
View Full Code Here

TOP

Related Classes of net.sf.rej.gui.editor.iteration.FindFieldRefs

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.