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

org.vaadin.tinymce.Menubar Maven / Gradle / Ivy

package org.vaadin.tinymce;

public enum Menubar {
    //@formatter:off
    FILE("file"),
    EDIT("edit"),
    VIEW("view"),
    INSERT("insert"),
    FORMAT("format"),
    TOOLS("tools"),
    TABLE("table"),
    HELP("help");
    //@formatter:on

    public final String menubarLabel;

    private Menubar(String menubarLabel) {
        this.menubarLabel = menubarLabel;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy