You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pivot.apache.org by tv...@apache.org on 2009/12/20 06:04:09 UTC

svn commit: r892563 - in /incubator/pivot/trunk: tools/src/org/apache/pivot/tools/wtk/ tutorials/www/

Author: tvolkert
Date: Sun Dec 20 05:04:09 2009
New Revision: 892563

URL: http://svn.apache.org/viewvc?rev=892563&view=rev
Log:
Minor doc updates

Modified:
    incubator/pivot/trunk/tools/src/org/apache/pivot/tools/wtk/ComponentInspector.java
    incubator/pivot/trunk/tools/src/org/apache/pivot/tools/wtk/ComponentPropertyInspector.java
    incubator/pivot/trunk/tools/src/org/apache/pivot/tools/wtk/ComponentStyleInspector.java
    incubator/pivot/trunk/tutorials/www/scroll-bars.xml

Modified: incubator/pivot/trunk/tools/src/org/apache/pivot/tools/wtk/ComponentInspector.java
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/tools/src/org/apache/pivot/tools/wtk/ComponentInspector.java?rev=892563&r1=892562&r2=892563&view=diff
==============================================================================
--- incubator/pivot/trunk/tools/src/org/apache/pivot/tools/wtk/ComponentInspector.java (original)
+++ incubator/pivot/trunk/tools/src/org/apache/pivot/tools/wtk/ComponentInspector.java Sun Dec 20 05:04:09 2009
@@ -20,6 +20,10 @@
 import org.apache.pivot.wtk.Component;
 import org.apache.pivot.wtk.Container;
 
+/**
+ * Abstract base class for a component that is designed to inspect another
+ * component (its "source").
+ */
 public abstract class ComponentInspector extends Container {
     private static class ComponentInspectorListenerList
         extends ListenerList<ComponentInspectorListener> implements ComponentInspectorListener {

Modified: incubator/pivot/trunk/tools/src/org/apache/pivot/tools/wtk/ComponentPropertyInspector.java
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/tools/src/org/apache/pivot/tools/wtk/ComponentPropertyInspector.java?rev=892563&r1=892562&r2=892563&view=diff
==============================================================================
--- incubator/pivot/trunk/tools/src/org/apache/pivot/tools/wtk/ComponentPropertyInspector.java (original)
+++ incubator/pivot/trunk/tools/src/org/apache/pivot/tools/wtk/ComponentPropertyInspector.java Sun Dec 20 05:04:09 2009
@@ -18,6 +18,9 @@
 
 import org.apache.pivot.wtk.Component;
 
+/**
+ * Inspects a source component's intrinsic properties.
+ */
 public class ComponentPropertyInspector extends ComponentInspector {
     public ComponentPropertyInspector() {
         this(null);

Modified: incubator/pivot/trunk/tools/src/org/apache/pivot/tools/wtk/ComponentStyleInspector.java
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/tools/src/org/apache/pivot/tools/wtk/ComponentStyleInspector.java?rev=892563&r1=892562&r2=892563&view=diff
==============================================================================
--- incubator/pivot/trunk/tools/src/org/apache/pivot/tools/wtk/ComponentStyleInspector.java (original)
+++ incubator/pivot/trunk/tools/src/org/apache/pivot/tools/wtk/ComponentStyleInspector.java Sun Dec 20 05:04:09 2009
@@ -18,6 +18,9 @@
 
 import org.apache.pivot.wtk.Component;
 
+/**
+ * Inspects a source component's style properties.
+ */
 public class ComponentStyleInspector extends ComponentInspector {
     public ComponentStyleInspector() {
         this(null);

Modified: incubator/pivot/trunk/tutorials/www/scroll-bars.xml
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/tutorials/www/scroll-bars.xml?rev=892563&r1=892562&r2=892563&view=diff
==============================================================================
--- incubator/pivot/trunk/tutorials/www/scroll-bars.xml (original)
+++ incubator/pivot/trunk/tutorials/www/scroll-bars.xml Sun Dec 20 05:04:09 2009
@@ -32,10 +32,10 @@
         </p>
 
         <p>
-            Visually, a scroll bar is usually presented as a scroll "handle" within a larger
-            "track", with two buttons on either end of the track to move the handle. The track
-            represents the outer range from which the user can select, and the size of the handle
-            represents the scroll bar's extent.
+            Visually, a scroll bar is usually presented as a scroll "handle" (sometimes called the
+            "thumb") within a larger "track", with two buttons on either end of the track to move
+            the handle. The track represents the outer range from which the user can select, and
+            the size of the handle represents the scroll bar's extent.
         </p>
 
         <p>
@@ -60,8 +60,7 @@
             simple timeline.
         </p>
 
-        <application class="org.apache.pivot.wtk.ScriptApplication"
-            width="550" height="200">
+        <application class="org.apache.pivot.wtk.ScriptApplication" width="550" height="200">
             <libraries>
                 <library>core</library>
                 <library>wtk</library>