Skip to content
This repository has been archived by the owner on Dec 5, 2024. It is now read-only.
mlabuda edited this page Jan 27, 2014 · 14 revisions

API / Abstract

  • Menu / AbstractMenu

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 Project -> Properties

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