]> SALOME platform Git repositories - tools/siman.git/blob - Workspace/Siman/src/org/splat/wapp/SimpleMenu.java
Salome HOME
Update copyrights 2014.
[tools/siman.git] / Workspace / Siman / src / org / splat / wapp / SimpleMenu.java
1 package org.splat.wapp;
2
3 public class SimpleMenu extends Menu {
4
5         // ==============================================================================================================================
6         // Constructors
7         // ==============================================================================================================================
8
9         public SimpleMenu(final String name) {
10                 // -------------------------------
11                 super(name);
12         }
13
14         public SimpleMenu(final String name, final String scope) {
15                 // ---------------------------------------------
16                 super(name, scope);
17         }
18
19         // ==============================================================================================================================
20         // Member functions
21         // ==============================================================================================================================
22
23         public void addItem(final String name, final String label,
24                         final String icon, final String url) {
25                 // ------------------------------------------------------------------------
26                 this.addItem(name, new MenuItem(label, icon, url));
27         }
28 }