com.actelion.research.gui.generic.GenericPopupMenu Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openchemlib Show documentation
Show all versions of openchemlib Show documentation
Open Source Chemistry Library
package com.actelion.research.gui.generic;
public interface GenericPopupMenu extends GenericComponent {
void addItem(String text, String command, boolean enabled);
void addRadioButtonItem(String text, String command, int rgb, boolean isSelected);
void startSubMenu(String text);
void endSubMenu();
void addSeparator();
void show(int x, int y);
}