01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.admin.common;
05:
06: import org.dijon.MenuItem;
07:
08: import javax.swing.Icon;
09:
10: public class XMenuItem extends MenuItem {
11: public XMenuItem() {
12: super ();
13: }
14:
15: public XMenuItem(String label) {
16: super (label);
17: }
18:
19: public XMenuItem(String label, Icon icon) {
20: super(label, icon);
21: }
22:
23: }
|