01: // (c) copyright 2006 by eXXcellent solutions, Ulm. Author: bschmid
02:
03: package org.wings.header;
04:
05: import org.wings.Renderable;
06:
07: /**
08: * A HTML header entry typically part of the the <head> section inside a HTML document.
09: *
10: * @author Benjamin Schmid <B.Schmid@exxcellent.de>
11: */
12: public interface Header extends Renderable {
13: }
|