Package hermes.browser.actions

Examples of hermes.browser.actions.FilterableAction


   private void doFilter(String filter)
   {
      if (HermesBrowser.getBrowser().getDocumentPane().getActiveDocument() instanceof FilterableAction)
      {
         FilterableAction filterableAction = (FilterableAction) HermesBrowser.getBrowser().getDocumentPane().getActiveDocument();

         try
         {
            filterableAction.setSelector(filter);
         }
         catch (Throwable e)
         {
            HermesBrowser.getBrowser().showErrorDialog("Invalid selector: ", e);
         }
View Full Code Here


   private void doFilter(String filter)
   {
      if (HermesBrowser.getBrowser().getDocumentPane().getActiveDocument() instanceof FilterableAction)
      {
         FilterableAction filterableAction = (FilterableAction) HermesBrowser.getBrowser().getDocumentPane().getActiveDocument();

         try
         {
            filterableAction.setSelector(filter);
         }
         catch (Throwable e)
         {
            HermesBrowser.getBrowser().showErrorDialog("Invalid selector: ", e);
         }
View Full Code Here

TOP

Related Classes of hermes.browser.actions.FilterableAction

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.