Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

In der View Events werden alle Events aufgelistet, die bei der aktuell selektierten UI-Komponente registriert werden können. Events, bei denen bereits Code hinterlegt ist, werden blau unterstrichen dargestellt und mit dem Event Icon markiert. Um ein neues Event hinzuzufügen, müssen Sie das entsprechende Event anklicken. RapidClipse wechselt anschließend automatisch in die Code-Ansicht und generiert den entsprechenden Code.

Image Removed

...

All the events that are available within the currently selected UI component are listed in the Events view. Events for which a code is already specified are underlined in blue and highlighted by the event icon. To add a new event, you must click on the corresponding event. RapidClipse then automatically switches to the code view and generates the corresponding code.

Image Added

Result:
  • Event buttonClick 

    Code Block
    languagejava
    themeConfluence
    private void button_buttonClick(Button.ClickEvent event) {
    
        // buttonClick Action 
    
    }

...