All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javajs.swing.JMenu Maven / Gradle / Ivy

There is a newer version: 14.31.10
Show newest version
package javajs.swing;

import javajs.awt.Component;

public class JMenu extends JMenuItem {

  public JMenu() {
    super("mnu",TYPE_MENU);
  }

  public int getItemCount() {
    return getComponentCount();
  }

  public Component getItem(int i) {
    return getComponent(i);
  }

  @Override
  public Object getPopupMenu() {
    return this;
  }

  @Override
  public String toHTML() {
    return getMenuHTML();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy