Package xmldb.simplerss.ui.action

Examples of xmldb.simplerss.ui.action.DisplayHtmlAction


      button1.addActionListener(new DynamicLoadRssAction(swingUI));

      JButton button2 = new JButton("Display HTML");
      button2.setVerticalTextPosition(AbstractButton.BOTTOM);
      button2.setHorizontalTextPosition(AbstractButton.CENTER);
      button2.addActionListener(new DisplayHtmlAction(swingUI));

      JButton button3 = new JButton("Search Text");
      button3.setVerticalTextPosition(AbstractButton.BOTTOM);
      button3.setHorizontalTextPosition(AbstractButton.CENTER);
      button3.addActionListener(new SearchTextAction(swingUI));

      JButton button4 = new JButton("Combine Feeds");
      button4.setVerticalTextPosition(AbstractButton.BOTTOM);
      button4.setHorizontalTextPosition(AbstractButton.CENTER);
      button4.addActionListener(new CombineFeedsAction(swingUI));

      JButton button5 = new JButton("Statistics");
      button5.setVerticalTextPosition(AbstractButton.BOTTOM);
      button5.setHorizontalTextPosition(AbstractButton.CENTER);
      button5.addActionListener(new StatisticRSS(swingUI));

      JButton button6 = new JButton("Update Sources ...");
      button6.setVerticalTextPosition(AbstractButton.BOTTOM);
      button6.setHorizontalTextPosition(AbstractButton.CENTER);
      button6.addActionListener(new UpdateTestAction(swingUI));
     
//      JButton button7 = new JButton("Operation...");
//      button7.setVerticalTextPosition(AbstractButton.BOTTOM);
//      button7.setHorizontalTextPosition(AbstractButton.CENTER);
//      button7.addActionListener(new ExampleAction(swingUI));

      JButton button8 = new JButton("Order by Title");
      button8.setVerticalTextPosition(AbstractButton.BOTTOM);
      button8.setHorizontalTextPosition(AbstractButton.CENTER);
      button8.addActionListener(new TitleOrder(swingUI));
     
      JButton button9 = new JButton("Order by Date");
      button9.setVerticalTextPosition(AbstractButton.BOTTOM);
      button9.setHorizontalTextPosition(AbstractButton.CENTER);
      button9.addActionListener(new DisplayHtmlAction(swingUI));
     
      Box panel = new Box(BoxLayout.Y_AXIS);
      Box p = new Box(BoxLayout.X_AXIS);
     
      p.add(button0);
View Full Code Here

TOP

Related Classes of xmldb.simplerss.ui.action.DisplayHtmlAction

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.