About the ClickableLabel category

ClickableLabel: The addon contains a ‘ClickableLabel’ widget which is displayed as a simple label but triggers the same events like a button.

For example:

final ClickableLabel myLabel = new ClickableLabel(“The caption”);
myLabel.addListener(new Button.ClickListener() {
@Override
public void buttonClick(final Button.ClickEvent event) {

}
});