Package com.wiquery.plugins.demo

Source Code of com.wiquery.plugins.demo.RoundPanelPanel

/**
*
*/
package com.wiquery.plugins.demo;

import org.apache.wicket.Component;
import org.apache.wicket.markup.html.panel.Panel;
import org.apache.wicket.model.Model;

import com.wiquery.plugin.antilia.roundpane.RoundPanel;

/**
* @author Ernesto Reinaldo Barreiro (reiern70@gmail.com)
*
*/
public class RoundPanelPanel extends Panel {

  private static final long serialVersionUID = 1L;

  /**
   * @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);
  }

}
TOP

Related Classes of com.wiquery.plugins.demo.RoundPanelPanel

TOP
Copyright © 2018 www.massapi.com. 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.