View Javadoc

1   package ch.odi.justblog.gui.swing.control;
2   
3   /***
4    * 
5    *
6    * @author oglueck
7    */
8   public interface ButtonBarController {
9       /***
10       * Called when the user presses the Post button.
11       */
12      void postEntry();
13  
14      /***
15       * Called when the user presses the Clear button.
16       */
17      void clearEntry();
18  }