org.jsimpledb.vaadin.SmallButton Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsimpledb-vaadin Show documentation
Show all versions of jsimpledb-vaadin Show documentation
JSimpleDB classes supporting Vaadin applications.
/*
* Copyright (C) 2015 Archie L. Cobbs. All rights reserved.
*/
package org.jsimpledb.vaadin;
import com.vaadin.ui.Button;
import com.vaadin.ui.themes.Reindeer;
@SuppressWarnings("serial")
public class SmallButton extends Button {
public SmallButton() {
this.setStyleName(Reindeer.BUTTON_SMALL);
}
public SmallButton(String caption) {
super(caption);
this.setStyleName(Reindeer.BUTTON_SMALL);
}
public SmallButton(String caption, Button.ClickListener listener) {
super(caption, listener);
this.setStyleName(Reindeer.BUTTON_SMALL);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy