Package de.chris_soft.nanodoa.gui

Examples of de.chris_soft.nanodoa.gui.FulltextSearchWindow


   */
  @Override
  public void textInputFinished(String text) {
    if (text != null && text.trim().length() > 0) {
      try {
        new FulltextSearchWindow(text, God.appWindow);
      } catch (Exception exception) {
        LogUtils.log(exception);
        SwingUtils.showError(null, "Couldn't search for items!");
      }
    }
View Full Code Here

TOP

Related Classes of de.chris_soft.nanodoa.gui.FulltextSearchWindow

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.