Package org.cyclop.web.components.buttons

Examples of org.cyclop.web.components.buttons.IconButton


  }

  public ButtonsPanel withResultOrientation(final ButtonListener.ResultOrientationChange buttonListener) {
    UserPreferences preferences = userManager.readPreferences();
    int initialState = preferences.getResultOrientation();
    AjaxFallbackLink<Void> completion = new IconButton("resultOrientation", initialState,
        "glyphicon glyphicon-arrow-down", "glyphicon glyphicon-arrow-right") {
      @Override
      protected void onClick(AjaxRequestTarget target, int state) {
        UserPreferences preferences = userManager.readPreferences();
        preferences.setResultOrientation(state);
View Full Code Here

TOP

Related Classes of org.cyclop.web.components.buttons.IconButton

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.