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

« back to all changes in this revision

Viewing changes to modules/xcos/src/java/org/scilab/modules/xcos/actions/XcosDocumentationAction.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:
16
16
import java.awt.event.ActionEvent;
17
17
import java.awt.event.KeyEvent;
18
18
 
19
 
import org.scilab.modules.action_binding.highlevel.ScilabInterpreterManagement;
20
19
import org.scilab.modules.graph.ScilabComponent;
21
20
import org.scilab.modules.graph.ScilabGraph;
22
21
import org.scilab.modules.graph.actions.base.DefaultAction;
29
28
/**
30
29
 * View Xcos documentation
31
30
 */
 
31
@SuppressWarnings(value = { "serial" })
32
32
public final class XcosDocumentationAction extends DefaultAction {
33
33
    /** Name of the action */
34
34
    public static final String NAME = XcosMessages.XCOS_DOCUMENTATION;
41
41
 
42
42
    /**
43
43
     * Constructor
44
 
     * 
 
44
     *
45
45
     * @param scilabGraph
46
46
     *            corresponding Scilab Graph
47
47
     */
51
51
 
52
52
    /**
53
53
     * Create a button for a graph toolbar
54
 
     * 
 
54
     *
55
55
     * @param scilabGraph
56
56
     *            corresponding Scilab Graph
57
57
     * @return the button
62
62
 
63
63
    /**
64
64
     * Create a menu for a graph menubar
65
 
     * 
 
65
     *
66
66
     * @param scilabGraph
67
67
     *            corresponding Scilab Graph
68
68
     * @return the menu
73
73
 
74
74
    /**
75
75
     * Action associated
76
 
     * 
 
76
     *
77
77
     * @param e
78
78
     *            the event
79
79
     * @see org.scilab.modules.gui.events.callback.CallBack#actionPerformed(java.awt.event.ActionEvent)