Skip to content
This repository has been archived by the owner on Dec 5, 2024. It is now read-only.
jpeterka edited this page Sep 20, 2013 · 14 revisions

API / Abstract

  • Button / AbstractButton

Implementation(s)

  • ContextMenu
  • ShellMenu
  • ToolBarMenu

Usage

ContextMenu

Trigger context menu New -> File

Menu cm = new ContextMenu("New","File");
cm.select();

ShellMenu

Trigger shell (or workbench) menu New -> File

Menu cm = new ShellMenu("Project","Properties");
cm.select();

ToolbarMenu

  • Note: There is not support for nested toolbar menus yet

Trigger ToolBar Search -> File Search

Menu cm = new ToolBarMenu("Search","File Search");
cm.select();
Clone this wiki locally