All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jsimpledb.vaadin.SmallButton Maven / Gradle / Ivy

There is a newer version: 3.6.1
Show newest version

/*
 * 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