Ejemplo n.º 1
0
  public LHSServerGroupNavigation() {

    layout = new LayoutPanel();
    layout.setStyleName("fill-layout");

    stack = new VerticalPanel();
    stack.setStyleName("fill-layout-width");

    serverGroupSection = new ServerGroupSection();
    stack.add(serverGroupSection.asWidget());

    DeploymentSection deploymentSection = new DeploymentSection();
    stack.add(deploymentSection.asWidget());

    layout.add(stack);
  }
Ejemplo n.º 2
0
 public void updateFrom(List<ServerGroupRecord> serverGroupRecords) {
   serverGroupSection.updateFrom(serverGroupRecords);
 }