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

API / Abstract

  • Menu / AbstractMenu

Implementation(s)

  • ContextMenu
  • ShellMenu
  • ToolBarMenu

Usage

ContextMenu

Open context menu New -> File

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

ShellMenu

Open shell (or workbench) menu Window -> Preferences

Menu shellMenu = new ShellMenu("Window", "Preferences);
shellMenu.select();

ToolbarMenu

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

Trigger Toolbar Search -> File Search

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