Example usage for com.vaadin.event Action getCaption

List of usage examples for com.vaadin.event Action getCaption

Introduction

In this page you can find the example usage for com.vaadin.event Action getCaption.

Prototype

public String getCaption() 

Source Link

Document

Returns the action's caption.

Usage

From source file:org.s23m.cell.editor.semanticdomain.ui.components.TreeActionHandler.java

License:Mozilla Public License

private void loadEdgeCreationForm(final Set set, final Action action) {
    addToTab(new EdgeCreationFormLayout(set, ACTION_INSTANTIATE, mainApp.getMultiTabPanel()),
            action.getCaption(), EditorIcon.EDGE.getIconImage());
}

From source file:org.s23m.cell.editor.semanticdomain.ui.components.TreeActionHandler.java

License:Mozilla Public License

private void loadImpactAnalysisForm(final Set set, final Action action) {
    addToTab(new ImpactAnalysisFormLayout(set, ACTION_IMPACT_ANALYSIS, mainApp.getMultiTabPanel()),
            action.getCaption(), EditorIcon.IMPACT_ANALYSIS.getIconImage());
}