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 ;9 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 }24