Package ro.fortsoft.wicket.dashboard

Examples of ro.fortsoft.wicket.dashboard.WidgetLocation


public class PrivateRoomsWidget extends AbstractWidget {
  private static final long serialVersionUID = 1769428980617610979L;

  public PrivateRoomsWidget() {
    super();
    location = new WidgetLocation(0, 1);
    init();
  }
View Full Code Here


public class StartWidget extends AbstractWidget {
  private static final long serialVersionUID = 9060237325733825899L;

  public StartWidget() {
    super();
    location = new WidgetLocation(1, 0);
    init();
  }
View Full Code Here

public class RssWidget extends AbstractWidget {
  private static final long serialVersionUID = 8866852061674736808L;

  public RssWidget() {
    super();
    location = new WidgetLocation(1, 1);
    init();
  }
View Full Code Here

public class WelcomeWidget extends AbstractWidget {
  private static final long serialVersionUID = 8866852061674736808L;

  public WelcomeWidget() {
    super();
    location = new WidgetLocation(0, 0);
    init();
  }
View Full Code Here

public class StartWidget extends AbstractWidget {
  private static final long serialVersionUID = 1L;

  public StartWidget() {
    super();
    location = new WidgetLocation(1, 0);
    init();
  }
View Full Code Here

  private static final long serialVersionUID = 1L;
  public static final String WIDGET_ID_RSS = "RssWidget";

  public RssWidget() {
    super();
    location = new WidgetLocation(1, 1);
    init();
  }
View Full Code Here

public class WelcomeWidget extends AbstractWidget {
  private static final long serialVersionUID = 1L;

  public WelcomeWidget() {
    super();
    location = new WidgetLocation(0, 0);
    init();
  }
View Full Code Here

  private static final long serialVersionUID = 1L;
  public static final String WIDGET_ID_MY_ROOMS = "MyRoomsWidget";

  public MyRoomsWidget() {
    super();
    location = new WidgetLocation(0, 1);
    init();
  }
View Full Code Here

TOP

Related Classes of ro.fortsoft.wicket.dashboard.WidgetLocation

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.