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 · 9 revisions

API / Abstract

  • Button / AbstractButton

Implementation(s)

  • PushButton
  • CheckButton
  • RadioButton
  • ToggleButton

Usage

PushButton

Lookup for a push button with text "Apply"

Button button = new PushButton("Apply");

Click a button

button.click(); 

Short notation

new PushButton("Apply").click();

Predefined buttons

There are also some predefined basic eclipse buttons. Whole list of predefined buttons:

  • BackButton
  • CancelButton
  • FinishButton
  • NextButton
  • NoButton
  • OkButton
  • YesButton
Clone this wiki locally