summaryrefslogtreecommitdiffstats
path: root/src/com/itmill/toolkit
diff options
context:
space:
mode:
authorJoonas Lehtinen <joonas.lehtinen@itmill.com>2006-11-17 10:16:12 +0000
committerJoonas Lehtinen <joonas.lehtinen@itmill.com>2006-11-17 10:16:12 +0000
commit62876e45f4fee2c53bb22d8caaf876c3850e155e (patch)
tree24b490c54cb35d5c05d6859c71299dcf5c06cb12 /src/com/itmill/toolkit
parenta3ca3000361be294721eb482f109b1524a17b799 (diff)
downloadvaadin-framework-62876e45f4fee2c53bb22d8caaf876c3850e155e.tar.gz
vaadin-framework-62876e45f4fee2c53bb22d8caaf876c3850e155e.zip
fixed validation errors
svn changeset:102/svn branch:toolkit
Diffstat (limited to 'src/com/itmill/toolkit')
-rw-r--r--src/com/itmill/toolkit/demo/package.html4
-rw-r--r--src/com/itmill/toolkit/package.html4
-rw-r--r--src/com/itmill/toolkit/ui/package.html6
3 files changed, 5 insertions, 9 deletions
diff --git a/src/com/itmill/toolkit/demo/package.html b/src/com/itmill/toolkit/demo/package.html
index e9e7735a73..b22fe0c4da 100644
--- a/src/com/itmill/toolkit/demo/package.html
+++ b/src/com/itmill/toolkit/demo/package.html
@@ -12,7 +12,7 @@ highlight certain aspects of the MillStone framework and how it can be
exploited to produce simple, elegant yet powerful user interface driven
applications.</p>
-<p><ul>
+<ul>
<li><strong>HelloWorld</strong> is the classic example which only prints the
text "Hello, World!" on the screen.</li>
<li><strong>LoginExample</strong> is almost as simple as HelloWorld. It
@@ -21,7 +21,7 @@ applications.</li>
<li><strong>Calc</strong> implements a calculator application which
demonstrates how to build a bit more complicated user interface and how the
application can interact with the usern through that interface.</li>
-</ul></p>
+</ul>
<!-- <h2>Package Specification</h2> -->
diff --git a/src/com/itmill/toolkit/package.html b/src/com/itmill/toolkit/package.html
index 88df1cfb2a..2c956f151a 100644
--- a/src/com/itmill/toolkit/package.html
+++ b/src/com/itmill/toolkit/package.html
@@ -12,7 +12,6 @@ The sub-packages from this point contain application components and utilities.
<h2>Package Specification</h2>
-<p>
<b>The Millstone library base is composed of the following packages:</b>
<dl>
<dt>org.millstone.base.data</dt>
@@ -30,9 +29,6 @@ The sub-packages from this point contain application components and utilities.
<dt>org.millstone.base.ui</dt>
<dd>The Millstone UI components.</dd>
</dl>
-
-
-</p>
<!-- Put @see and @since tags down here. -->
diff --git a/src/com/itmill/toolkit/ui/package.html b/src/com/itmill/toolkit/ui/package.html
index e7d6927d78..de5cd3171c 100644
--- a/src/com/itmill/toolkit/ui/package.html
+++ b/src/com/itmill/toolkit/ui/package.html
@@ -16,7 +16,7 @@
<p>The general interface hierarchy looks like this:</p>
-<p style="text-align:center;><img src="doc-files/component_interfaces.gif"/> </p>
+<p style="text-align: center;><img src="doc-files/component_interfaces.gif"/> </p>
<p><i>Note that the above picture includes only the main interfaces. This
package includes several other lesser subinterfaces which are not
@@ -45,9 +45,9 @@ containers whose contents can be positioned arbitrarily.</p>
<p>The actual component classes form a hierarchy like this:</p>
-<p><center><img src="doc-files/component_class_hierarchy.gif"/></center></p>
+<center><img src="doc-files/component_class_hierarchy.gif"/></center><br/>
-<p><center><i>Underlined classes are abstract.</i></center></p>
+<center><i>Underlined classes are abstract.</i></center>
<p>At the top level is {@link org.millstone.base.ui.AbstractComponent}
which implements the {@link org.millstone.base.ui.Component} interface. As