Package com.wiquery.plugin.antilia.roundpane

Examples of com.wiquery.plugin.antilia.roundpane.RoundPanel


  /**
   * @param id
   */
  public RoundPanelPanel(String id) {
    super(id);
    RoundPanel panel = new RoundPanel("panel", new Model<String>("AJAX Sliders")) {
     
      private static final long serialVersionUID = 1L;

      @Override
      protected Component newContent(String id) {
       
        return new SliderPanel(id);
      }
    };
    panel.setWidth(400);
    add(panel);
  }
View Full Code Here

TOP

Related Classes of com.wiquery.plugin.antilia.roundpane.RoundPanel

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.