diff options
Diffstat (limited to 'src/com/itmill/toolkit/terminal/web/Theme.java')
-rw-r--r-- | src/com/itmill/toolkit/terminal/web/Theme.java | 27 |
1 files changed, 1 insertions, 26 deletions
diff --git a/src/com/itmill/toolkit/terminal/web/Theme.java b/src/com/itmill/toolkit/terminal/web/Theme.java index ee204c7f95..9fcac790fa 100644 --- a/src/com/itmill/toolkit/terminal/web/Theme.java +++ b/src/com/itmill/toolkit/terminal/web/Theme.java @@ -48,7 +48,7 @@ import org.xml.sax.Attributes; /** * This class provides an interface to the meta-information regarding a - * particular webadapter theme. This entails for instanace the inheritance tree + * particular theme. This entails for instanace the inheritance tree * of the various xsl-template files, the different requirments that the theme * imposes on the client browser, etc. * <p> @@ -77,31 +77,6 @@ import org.xml.sax.Attributes; * <p> * The theme description is XML data, and it can be loaded from file or stream. * The default filename is specified by <code>Theme.DESCRIPTIONFILE</code>. - * Example of theme description file: - * - * <pre> - * <?xml version="1.0" encoding="UTF-8"?> - * - * <theme name="normal"> - * - * <extends theme="simple"/> - * - * <description>The normal theme for all browsers</description> - * <author name="IT Mill Ltd" email="millstone@itmill.com" /> - * - * <fileset> - * <require> - * <supports javascript="JavaScript 1.0"/> - * </require> - * - * <file name="common/error.xsl" /> - * <file name="components/button.xsl" /> - * <file name="components/select.xsl" /> - * <file name="components/textfield.xsl" /> - * <file name="components/table.xsl" /> - * </fileset> - * </theme> - * </pre> * * </p> * |