01: /*
02: * Copyright 2000,2005 wingS development team.
03: *
04: * This file is part of wingS (http://wingsframework.org).
05: *
06: * wingS is free software; you can redistribute it and/or modify
07: * it under the terms of the GNU Lesser General Public License
08: * as published by the Free Software Foundation; either version 2.1
09: * of the License, or (at your option) any later version.
10: *
11: * Please see COPYING for the complete licence.
12: */
13: package org.wings.plaf.css;
14:
15: import org.apache.commons.logging.Log;
16: import org.apache.commons.logging.LogFactory;
17: import org.wings.SWindow;
18: import org.wings.header.Header;
19: import org.wings.io.StringBuilderDevice;
20: import org.wings.plaf.Update;
21:
22: import java.util.ArrayList;
23: import java.util.List;
24:
25: /**
26: * <code>WindowCG</code>.
27: * User: raedler
28: * Date: Oct 5, 2007
29: * Time: 1:30:02 AM
30: *
31: * @author raedler
32: * @version $Id
33: */
34: public class WindowCG extends FormCG implements org.wings.plaf.WindowCG {
35:
36: private final static Log log = LogFactory.getLog(WindowCG.class);
37:
38: protected final List<Header> headers = new ArrayList<Header>();
39: }
|