/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package com.k_int.webedit.layout;

import java.util.ArrayList;
import java.util.List;



/**
 * @author ibbo
 */

public abstract class ContainerDTO extends ComponentDTO {

  public List<ComponentDTO> components = new ArrayList<ComponentDTO>();
  public String name;

  public ContainerDTO() {
    super();
  }

  public ContainerDTO(String name) {
    super();
    this.name = name;
  }

  public void add(ComponentDTO component) {
    components.add(component);
  }
}
