KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > admin > common > XMenuItem


1 /*
2  * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
3  */

4 package com.tc.admin.common;
5
6 import org.dijon.MenuItem;
7
8 import javax.swing.Icon JavaDoc;
9
10 public class XMenuItem extends MenuItem {
11   public XMenuItem() {
12     super();
13   }
14
15   public XMenuItem(String JavaDoc label) {
16     super(label);
17   }
18   
19   public XMenuItem(String JavaDoc label, Icon JavaDoc icon) {
20     super(label, icon);
21   }
22   
23 }
24
Popular Tags