~ubuntu-branches/ubuntu/raring/scilab/raring-proposed

« back to all changes in this revision

Viewing changes to modules/ui_data/src/java/org/scilab/modules/ui_data/actions/GraphicHandlesFilteringAction.java

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2012-08-30 14:42:38 UTC
  • mfrom: (1.4.7)
  • Revision ID: package-import@ubuntu.com-20120830144238-c1y2og7dbm7m9nig
Tags: 5.4.0-beta-3-1~exp1
* New upstream release
* Update the scirenderer dep
* Get ride of libjhdf5-java dependency

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
import org.scilab.modules.gui.checkboxmenuitem.CheckBoxMenuItem;
16
16
import org.scilab.modules.ui_data.utils.UiDataMessages;
17
17
 
 
18
@SuppressWarnings(value = { "serial" })
18
19
public class GraphicHandlesFilteringAction extends FilteringAction {
19
 
        /** Name of the action */
20
 
        public static final String NAME = UiDataMessages.GRAPHIC_HANDLES;
21
 
        
22
 
 
23
 
        /**
24
 
         * Constructor
25
 
         * 
26
 
         */
27
 
        public GraphicHandlesFilteringAction() {
28
 
                super();
29
 
        }
30
 
        /**
31
 
         * Create checkbox menu for the graph menu bar
32
 
         * 
33
 
         * @return the menu
34
 
         */
35
 
        public static CheckBoxMenuItem createCheckBoxMenu() {
36
 
                CheckBoxMenuItem menu = createCheckBoxMenu( new GraphicHandlesFilteringAction());
37
 
                return menu;
38
 
        }
 
20
    /** Name of the action */
 
21
    public static final String NAME = UiDataMessages.GRAPHIC_HANDLES;
 
22
 
 
23
 
 
24
    /**
 
25
     * Constructor
 
26
     *
 
27
     */
 
28
    public GraphicHandlesFilteringAction() {
 
29
        super();
 
30
    }
 
31
    /**
 
32
     * Create checkbox menu for the graph menu bar
 
33
     *
 
34
     * @return the menu
 
35
     */
 
36
    public static CheckBoxMenuItem createCheckBoxMenu() {
 
37
        CheckBoxMenuItem menu = createCheckBoxMenu( new GraphicHandlesFilteringAction());
 
38
        return menu;
 
39
    }
39
40
 
40
41
}