You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pivot.apache.org by sm...@apache.org on 2013/10/05 01:57:57 UTC

svn commit: r1529353 [4/8] - in /pivot/trunk: charts/src/org/apache/pivot/charts/ core/src/org/apache/pivot/beans/ core/src/org/apache/pivot/collections/ core/src/org/apache/pivot/io/ core/src/org/apache/pivot/json/ core/src/org/apache/pivot/serializat...

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/ContainerMouseListener.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/ContainerMouseListener.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/ContainerMouseListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/ContainerMouseListener.java Fri Oct  4 23:57:51 2013
@@ -49,7 +49,7 @@ public interface ContainerMouseListener 
 
     /**
      * Called when the mouse is moved over a container.
-     * 
+     *
      * @param container
      * @param x
      * @param y
@@ -60,7 +60,7 @@ public interface ContainerMouseListener 
 
     /**
      * Called when the mouse is pressed over a container.
-     * 
+     *
      * @param container
      * @param button
      * @param x
@@ -72,7 +72,7 @@ public interface ContainerMouseListener 
 
     /**
      * Called when the mouse is released over a container.
-     * 
+     *
      * @param container
      * @param button
      * @param x
@@ -84,7 +84,7 @@ public interface ContainerMouseListener 
 
     /**
      * Called when the mouse wheel is scrolled over a container.
-     * 
+     *
      * @param container
      * @param scrollType
      * @param scrollAmount

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/CornerRadii.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/CornerRadii.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/CornerRadii.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/CornerRadii.java Fri Oct  4 23:57:51 2013
@@ -100,7 +100,7 @@ public final class CornerRadii implement
     /**
      * Construct a {@link CornerRadii} object from a dictionary specifying
      * values for each of the four corners
-     * 
+     *
      * @param cornerRadii A dictionary with keys {@value #TOP_LEFT_KEY},
      * {@value #TOP_RIGHT_KEY}, {@value #BOTTOM_LEFT_KEY},
      * {@value #BOTTOM_RIGHT_KEY}, all with numeric values. Omitted values are

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/DesktopApplicationContext.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/DesktopApplicationContext.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/DesktopApplicationContext.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/DesktopApplicationContext.java Fri Oct  4 23:57:51 2013
@@ -65,14 +65,14 @@ public final class DesktopApplicationCon
 
         /**
          * Called when the host window for secondary display has been opened.
-         * 
+         *
          * @param display
          */
         public void hostWindowOpened(Display display);
 
         /**
          * Called when the host window for secondary display has been closed.
-         * 
+         *
          * @param display
          */
         public void hostWindowClosed(Display display);
@@ -403,7 +403,7 @@ public final class DesktopApplicationCon
 
     /**
      * Terminates the application context.
-     * 
+     *
      * @param optional If <tt>true</tt>, shutdown is optional and may be
      * cancelled. If <tt>false</tt>, shutdown cannot be cancelled.
      */
@@ -454,7 +454,7 @@ public final class DesktopApplicationCon
 
     /**
      * Primary application entry point.
-     * 
+     *
      * @param args
      */
     public static void main(String[] args) {
@@ -715,7 +715,7 @@ public final class DesktopApplicationCon
 
     /**
      * Sets the full-screen mode flag.
-     * 
+     *
      * @param fullScreen
      */
     public static void setFullScreen(boolean fullScreen) {
@@ -771,7 +771,7 @@ public final class DesktopApplicationCon
      * its UI and the SplashScreen is ready to be dismissed, but can be safely
      * called regardless of whether there is now, or used to be, a visible
      * SplashScreen.
-     * 
+     *
      * @param display Display to make visible
      * @see java.awt.SplashScreen
      */
@@ -786,7 +786,7 @@ public final class DesktopApplicationCon
 
     /**
      * Sizes the window's native host frame to match its preferred size.
-     * 
+     *
      * @param window
      */
     public static void sizeHostToFit(Window window) {
@@ -807,7 +807,7 @@ public final class DesktopApplicationCon
 
     /**
      * Creates a new secondary display.
-     * 
+     *
      * @param width
      * @param height
      * @param x
@@ -846,7 +846,7 @@ public final class DesktopApplicationCon
      * into applications. For example: <code> public class MyApp implements
      * Application { public static void main(String[] args) throws Exception {
      * DesktopApplicationContext.main(MyApp.class, args); } } </code>
-     * 
+     *
      * @param applicationClass
      * @param applicationArgs
      */

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/Dialog.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/Dialog.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/Dialog.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/Dialog.java Fri Oct  4 23:57:51 2013
@@ -120,7 +120,7 @@ public class Dialog extends Frame {
 
     /**
      * Opens the dialog.
-     * 
+     *
      * @param display The display on which the dialog will be opened.
      * @param owner The window's owner. The dialog will be modal over this
      * window.
@@ -132,7 +132,7 @@ public class Dialog extends Frame {
 
     /**
      * Opens the dialog.
-     * 
+     *
      * @param display The display on which the dialog will be opened.
      * @param dialogCloseListenerArgument A listener that will be called when the
      * dialog is closed.
@@ -143,7 +143,7 @@ public class Dialog extends Frame {
 
     /**
      * Opens the dialog.
-     * 
+     *
      * @param owner The window's owner. The dialog will be modal over this
      * window.
      * @param dialogCloseListenerArgument A listener that will be called when the
@@ -159,7 +159,7 @@ public class Dialog extends Frame {
 
     /**
      * Opens the dialog.
-     * 
+     *
      * @param display The display on which the dialog will be opened.
      * @param owner The window's owner, or <tt>null</tt> if the window has no
      * owner. Required if the dialog is modal.

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/DialogCloseListener.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/DialogCloseListener.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/DialogCloseListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/DialogCloseListener.java Fri Oct  4 23:57:51 2013
@@ -22,7 +22,7 @@ package org.apache.pivot.wtk;
 public interface DialogCloseListener {
     /**
      * Called when a dialog has closed.
-     * 
+     *
      * @param dialog
      */
     public void dialogClosed(Dialog dialog, boolean modal);

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/DialogListener.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/DialogListener.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/DialogListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/DialogListener.java Fri Oct  4 23:57:51 2013
@@ -22,7 +22,7 @@ package org.apache.pivot.wtk;
 public interface DialogListener {
     /**
      * Called when a dialog's modal flag has changed.
-     * 
+     *
      * @param dialog
      */
     public void modalChanged(Dialog dialog);

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/DialogStateListener.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/DialogStateListener.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/DialogStateListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/DialogStateListener.java Fri Oct  4 23:57:51 2013
@@ -44,7 +44,7 @@ public interface DialogStateListener ext
 
     /**
      * Called to preview a dialog close event.
-     * 
+     *
      * @param dialog
      * @param result
      */
@@ -52,7 +52,7 @@ public interface DialogStateListener ext
 
     /**
      * Called when a dialog close event has been vetoed.
-     * 
+     *
      * @param dialog
      * @param reason
      */

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/DragSource.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/DragSource.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/DragSource.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/DragSource.java Fri Oct  4 23:57:51 2013
@@ -22,7 +22,7 @@ package org.apache.pivot.wtk;
 public interface DragSource {
     /**
      * Called by the framework to initiate a drag operation.
-     * 
+     *
      * @param component
      * @param x
      * @param y
@@ -32,7 +32,7 @@ public interface DragSource {
 
     /**
      * Called by the framework to terminate a drag operation.
-     * 
+     *
      * @param component
      * @param dropAction
      */
@@ -40,7 +40,7 @@ public interface DragSource {
 
     /**
      * Returns the drag source's native flag.
-     * 
+     *
      * @return If <tt>true</tt>, the drag will be executed via the native OS.
      * Otherwise, it will be executed locally.
      */
@@ -53,7 +53,7 @@ public interface DragSource {
 
     /**
      * Returns a visual representing the drag content.
-     * 
+     *
      * @return The drag visual, or <tt>null</tt> for no visual.
      */
     public Visual getRepresentation();
@@ -61,7 +61,7 @@ public interface DragSource {
     /**
      * Returns the offset of the mouse pointer within the drag visual. Not
      * required unless a representation is specified.
-     * 
+     *
      * @return The mouse offset within the drag visual, or <tt>null</tt> if no
      * visual is specified.
      */
@@ -69,7 +69,7 @@ public interface DragSource {
 
     /**
      * Returns the drop actions supported by this drag source.
-     * 
+     *
      * @return A bitfield of the supported drop actions.
      */
     public int getSupportedDropActions();

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/DropTarget.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/DropTarget.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/DropTarget.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/DropTarget.java Fri Oct  4 23:57:51 2013
@@ -22,7 +22,7 @@ package org.apache.pivot.wtk;
 public interface DropTarget {
     /**
      * Called when the mouse first enters a drop target during a drag operation.
-     * 
+     *
      * @param component
      * @param dragContent
      * @param supportedDropActions
@@ -35,7 +35,7 @@ public interface DropTarget {
 
     /**
      * Called when the mouse leaves a drop target during a drag operation.
-     * 
+     *
      * @param component
      */
     public void dragExit(Component component);
@@ -43,7 +43,7 @@ public interface DropTarget {
     /**
      * Called when the mouse is moved while positioned over a drop target during
      * a drag operation.
-     * 
+     *
      * @param component
      * @param dragContent
      * @param supportedDropActions
@@ -59,7 +59,7 @@ public interface DropTarget {
     /**
      * Called when the user drop action changes while the mouse is positioned
      * over a drop target during a drag operation.
-     * 
+     *
      * @param component
      * @param dragContent
      * @param supportedDropActions
@@ -74,7 +74,7 @@ public interface DropTarget {
 
     /**
      * Called to drop the drag content.
-     * 
+     *
      * @param component
      * @param dragContent
      * @param supportedDropActions

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/Editor.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/Editor.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/Editor.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/Editor.java Fri Oct  4 23:57:51 2013
@@ -29,7 +29,7 @@ public interface Editor {
      * Saves an edit that is in progress by updating the appropriate data
      * object. It is up to implementations to define the behavior when
      * <tt>isEditing() == false</tt>.
-     * 
+     *
      * @return <tt>true</tt> if the changes were successfully saved;
      * <tt>false</tt> otherwise.
      */

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/Expander.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/Expander.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/Expander.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/Expander.java Fri Oct  4 23:57:51 2013
@@ -89,7 +89,7 @@ public class Expander extends Container 
 
     /**
      * Returns the expander's title.
-     * 
+     *
      * @return The pane's title, or <tt>null</tt> if no title is set.
      */
     public String getTitle() {
@@ -98,7 +98,7 @@ public class Expander extends Container 
 
     /**
      * Sets the expander's title.
-     * 
+     *
      * @param title The new title, or <tt>null</tt> for no title.
      */
     public void setTitle(String title) {
@@ -112,7 +112,7 @@ public class Expander extends Container 
 
     /**
      * Returns the expander's collapsible flag.
-     * 
+     *
      * @return The collapsible flag
      */
     public boolean isCollapsible() {
@@ -121,7 +121,7 @@ public class Expander extends Container 
 
     /**
      * Sets the expander's collapsible flag.
-     * 
+     *
      * @param collapsible The collapsible flag
      */
     public void setCollapsible(boolean collapsible) {

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/ExpanderListener.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/ExpanderListener.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/ExpanderListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/ExpanderListener.java Fri Oct  4 23:57:51 2013
@@ -59,7 +59,7 @@ public interface ExpanderListener {
 
     /**
      * Called when an expander's title has changed.
-     * 
+     *
      * @param expander
      * @param previousTitle
      */
@@ -67,21 +67,21 @@ public interface ExpanderListener {
 
     /**
      * Called when an expander's collapsible flag has changed.
-     * 
+     *
      * @param expander
      */
     public void collapsibleChanged(Expander expander);
 
     /**
      * Called to preview an expanded change event.
-     * 
+     *
      * @param expander
      */
     public Vote previewExpandedChange(Expander expander);
 
     /**
      * Called when an expanded change event has been vetoed.
-     * 
+     *
      * @param expander
      * @param reason
      */
@@ -89,14 +89,14 @@ public interface ExpanderListener {
 
     /**
      * Called when an expander's expanded state has changed.
-     * 
+     *
      * @param expander
      */
     public void expandedChanged(Expander expander);
 
     /**
      * Called when an expander's content component has changed.
-     * 
+     *
      * @param expander
      * @param previousContent
      */

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/FileBrowser.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/FileBrowser.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/FileBrowser.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/FileBrowser.java Fri Oct  4 23:57:51 2013
@@ -103,7 +103,7 @@ public class FileBrowser extends Contain
     /**
      * Creates a new FileBrowser <p> Note that this version of the constructor
      * must be used when a custom root folder has to be set.
-     * 
+     *
      * @param rootFolder The root folder full name.
      */
     public FileBrowser(String rootFolder) {
@@ -121,7 +121,7 @@ public class FileBrowser extends Contain
 
     /**
      * Returns the current root directory.
-     * 
+     *
      * @return The current root directory.
      */
     public File getRootDirectory() {
@@ -130,7 +130,7 @@ public class FileBrowser extends Contain
 
     /**
      * Sets the root directory. Clears any existing file selection.
-     * 
+     *
      * @param rootDirectory
      */
     public void setRootDirectory(File rootDirectory) {
@@ -153,7 +153,7 @@ public class FileBrowser extends Contain
 
     /**
      * Adds a file to the file selection.
-     * 
+     *
      * @param file
      * @return <tt>true</tt> if the file was added; <tt>false</tt> if it was
      * already selected.
@@ -182,7 +182,7 @@ public class FileBrowser extends Contain
 
     /**
      * Removes a file from the file selection.
-     * 
+     *
      * @param file
      * @return <tt>true</tt> if the file was removed; <tt>false</tt> if it was
      * not already selected.
@@ -202,7 +202,7 @@ public class FileBrowser extends Contain
 
     /**
      * When in single-select mode, returns the currently selected file.
-     * 
+     *
      * @return The currently selected file.
      */
     public File getSelectedFile() {
@@ -215,7 +215,7 @@ public class FileBrowser extends Contain
 
     /**
      * Sets the selection to a single file.
-     * 
+     *
      * @param file
      */
     public void setSelectedFile(File file) {
@@ -232,7 +232,7 @@ public class FileBrowser extends Contain
 
     /**
      * Returns the currently selected files.
-     * 
+     *
      * @return An immutable list containing the currently selected files. Note
      * that the returned list is a wrapper around the actual selection, not a
      * copy. Any changes made to the selection state will be reflected in the
@@ -244,7 +244,7 @@ public class FileBrowser extends Contain
 
     /**
      * Sets the selected files.
-     * 
+     *
      * @param selectedFiles The files to select.
      * @return The files that were selected, with duplicates eliminated.
      */
@@ -307,7 +307,7 @@ public class FileBrowser extends Contain
 
     /**
      * Sets the file browser's multi-select state.
-     * 
+     *
      * @param multiSelect <tt>true</tt> if multi-select is enabled;
      * <tt>false</tt>, otherwise.
      */
@@ -324,7 +324,7 @@ public class FileBrowser extends Contain
 
     /**
      * Returns the current file filter.
-     * 
+     *
      * @return The current file filter, or <tt>null</tt> if no filter is set.
      */
     public Filter<File> getDisabledFileFilter() {
@@ -333,7 +333,7 @@ public class FileBrowser extends Contain
 
     /**
      * Sets the file filter.
-     * 
+     *
      * @param disabledFileFilter The file filter to use, or <tt>null</tt> for no
      * filter.
      */

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/FileBrowserListener.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/FileBrowserListener.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/FileBrowserListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/FileBrowserListener.java Fri Oct  4 23:57:51 2013
@@ -64,7 +64,7 @@ public interface FileBrowserListener {
 
     /**
      * Called when a file browser's root directory has changed.
-     * 
+     *
      * @param fileBrowser
      * @param previousRootDirectory
      */
@@ -72,7 +72,7 @@ public interface FileBrowserListener {
 
     /**
      * Called when a file has been added to a file browser's selection.
-     * 
+     *
      * @param fileBrowser
      * @param file
      */
@@ -80,7 +80,7 @@ public interface FileBrowserListener {
 
     /**
      * Called when a file has been removed from a file browser's selection.
-     * 
+     *
      * @param fileBrowser
      * @param file
      */
@@ -88,7 +88,7 @@ public interface FileBrowserListener {
 
     /**
      * Called when a file browser's selection state has been reset.
-     * 
+     *
      * @param fileBrowser
      * @param previousSelectedFiles
      */
@@ -96,14 +96,14 @@ public interface FileBrowserListener {
 
     /**
      * Called when a file browser's multi-select flag has changed.
-     * 
+     *
      * @param fileBrowser
      */
     public void multiSelectChanged(FileBrowser fileBrowser);
 
     /**
      * Called when a file browser's file filter has changed.
-     * 
+     *
      * @param fileBrowser
      * @param previousDisabledFileFilter
      */

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/FileBrowserSheet.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/FileBrowserSheet.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/FileBrowserSheet.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/FileBrowserSheet.java Fri Oct  4 23:57:51 2013
@@ -91,7 +91,7 @@ public class FileBrowserSheet extends Sh
     /**
      * Creates a new FileBrowserSheet <p> Note that this version set by default
      * the user home as root folder.
-     * 
+     *
      * @param mode The mode for opening the sheet.
      * @see Mode
      */
@@ -103,7 +103,7 @@ public class FileBrowserSheet extends Sh
      * Creates a new FileBrowserSheet <p> Note that this version of the
      * constructor can be used when a custom root folder has to be set, and uses
      * the default mode.
-     * 
+     *
      * @param rootFolder The root folder full name.
      */
     public FileBrowserSheet(String rootFolder) {
@@ -113,7 +113,7 @@ public class FileBrowserSheet extends Sh
     /**
      * Creates a new FileBrowserSheet <p> Note that this version of the
      * constructor must be used when a custom root folder has to be set.
-     * 
+     *
      * @param mode The mode for opening the sheet.
      * @see Mode
      * @param rootFolder The root folder full name.
@@ -202,7 +202,7 @@ public class FileBrowserSheet extends Sh
 
     /**
      * When in single-select mode, returns the currently selected file.
-     * 
+     *
      * @return The currently selected file.
      */
     public File getSelectedFile() {
@@ -215,7 +215,7 @@ public class FileBrowserSheet extends Sh
 
     /**
      * Sets the selection to a single file.
-     * 
+     *
      * @param file
      */
     public void setSelectedFile(File file) {
@@ -232,7 +232,7 @@ public class FileBrowserSheet extends Sh
 
     /**
      * Returns the currently selected files.
-     * 
+     *
      * @return An immutable list containing the currently selected files. Note
      * that the returned list is a wrapper around the actual selection, not a
      * copy. Any changes made to the selection state will be reflected in the
@@ -244,7 +244,7 @@ public class FileBrowserSheet extends Sh
 
     /**
      * Sets the selected files.
-     * 
+     *
      * @param selectedFiles The files to select.
      * @return The files that were selected, with duplicates eliminated.
      */

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/FileBrowserSheetListener.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/FileBrowserSheetListener.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/FileBrowserSheetListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/FileBrowserSheetListener.java Fri Oct  4 23:57:51 2013
@@ -56,7 +56,7 @@ public interface FileBrowserSheetListene
 
     /**
      * Called when a file browser sheet's mode has changed.
-     * 
+     *
      * @param fileBrowserSheet
      * @param previousMode
      */
@@ -64,7 +64,7 @@ public interface FileBrowserSheetListene
 
     /**
      * Called when a file browser sheet's root directory has changed.
-     * 
+     *
      * @param fileBrowserSheet
      * @param previousRootDirectory
      */
@@ -72,7 +72,7 @@ public interface FileBrowserSheetListene
 
     /**
      * Called when a file browser sheet's selection state has been reset.
-     * 
+     *
      * @param fileBrowserSheet
      * @param previousSelectedFiles
      */
@@ -81,7 +81,7 @@ public interface FileBrowserSheetListene
 
     /**
      * Called when a file browser sheet's disabled file filter has changed.
-     * 
+     *
      * @param fileBrowserSheet
      * @param previousDisabledFileFilter
      */

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/FillPaneListener.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/FillPaneListener.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/FillPaneListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/FillPaneListener.java Fri Oct  4 23:57:51 2013
@@ -22,7 +22,7 @@ package org.apache.pivot.wtk;
 public interface FillPaneListener {
     /**
      * Called when a fill pane's orientation has changed.
-     * 
+     *
      * @param fillPane
      */
     public void orientationChanged(FillPane fillPane);

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/FocusTraversalPolicy.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/FocusTraversalPolicy.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/FocusTraversalPolicy.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/FocusTraversalPolicy.java Fri Oct  4 23:57:51 2013
@@ -23,7 +23,7 @@ package org.apache.pivot.wtk;
 public interface FocusTraversalPolicy {
     /**
      * Returns the next focus destination according to this traversal policy.
-     * 
+     *
      * @param container The container to which the traversal policy applies.
      * @param component The component from which focus is being transferred. If
      * <tt>null</tt>, implementations should return the first component for a

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/Form.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/Form.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/Form.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/Form.java Fri Oct  4 23:57:51 2013
@@ -259,7 +259,7 @@ public class Form extends Container {
 
         /**
          * Creates a new flag with the given message type and no message.
-         * 
+         *
          * @param messageType The type of the flag.
          */
         public Flag(MessageType messageType) {
@@ -268,7 +268,7 @@ public class Form extends Container {
 
         /**
          * Creates a new flag with the given type and message.
-         * 
+         *
          * @param messageType The type of the flag.
          * @param message The message text associated with the flag, or
          * <tt>null</tt> for no message.
@@ -284,7 +284,7 @@ public class Form extends Container {
 
         /**
          * Returns the flag's message type.
-         * 
+         *
          * @return The message type of the flag.
          */
         public MessageType getMessageType() {
@@ -293,7 +293,7 @@ public class Form extends Container {
 
         /**
          * Sets the flag's message type.
-         * 
+         *
          * @param messageType
          */
         public void setMessageType(MessageType messageType) {
@@ -306,7 +306,7 @@ public class Form extends Container {
 
         /**
          * Returns the flag message.
-         * 
+         *
          * @return The message text associated with the flag, or <tt>null</tt>
          * if there is no message.
          */
@@ -316,7 +316,7 @@ public class Form extends Container {
 
         /**
          * Sets the flag message.
-         * 
+         *
          * @param message The message text associated with the flag, or
          * <tt>null</tt> if there is no message.
          */
@@ -427,7 +427,7 @@ public class Form extends Container {
 
     /**
      * Returns the form's field sequence.
-     * 
+     *
      * @return The form's field sequence.
      */
     public SectionSequence getSections() {
@@ -447,7 +447,7 @@ public class Form extends Container {
 
     /**
      * Returns the number of fields that are flagged with a given message type.
-     * 
+     *
      * @param messageType The message type to count, or <tt>null</tt> to return
      * the count of all flagged fields regardless of message type.
      */
@@ -469,7 +469,7 @@ public class Form extends Container {
 
     /**
      * Ensures that the first field with the given flag type is visible.
-     * 
+     *
      * @param messageType The message type, or <tt>null</tt> to scroll the first
      * flag of any type to visible.
      */
@@ -510,7 +510,7 @@ public class Form extends Container {
 
     /**
      * Returns the form listener list.
-     * 
+     *
      * @return The form listener list.
      */
     public ListenerList<FormListener> getFormListeners() {
@@ -519,7 +519,7 @@ public class Form extends Container {
 
     /**
      * Returns the form attribute listener list.
-     * 
+     *
      * @return The form attribute listener list.
      */
     public ListenerList<FormAttributeListener> getFormAttributeListeners() {
@@ -529,7 +529,7 @@ public class Form extends Container {
     /**
      * Finds the {@link Form.Section} that the given component belongs to. Only
      * finds the section if the component is a direct child of the section.
-     * 
+     *
      * @see #getEnclosingSection getEnclosingSection(Component)
      */
     public static Section getSection(Component component) {
@@ -540,7 +540,7 @@ public class Form extends Container {
      * Finds the {@link Form.Section} that the given component belongs to. Will
      * search up the parent hierarchy in case the component is nested inside
      * other containers inside the form.
-     * 
+     *
      * @return The form section this component (or one of its parents) belongs
      * to or <code>null</code> if the component does not belong to a form.
      * @see #getSection getSection(Component)

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/FormAttributeListener.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/FormAttributeListener.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/FormAttributeListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/FormAttributeListener.java Fri Oct  4 23:57:51 2013
@@ -42,7 +42,7 @@ public interface FormAttributeListener {
 
     /**
      * Called when a fields's label attribute has changed.
-     * 
+     *
      * @param form
      * @param field
      * @param previousLabel
@@ -51,7 +51,7 @@ public interface FormAttributeListener {
 
     /**
      * Called when a fields's required attribute has changed.
-     * 
+     *
      * @param form
      * @param field
      */
@@ -59,7 +59,7 @@ public interface FormAttributeListener {
 
     /**
      * Called when a field's flag attribute has changed.
-     * 
+     *
      * @param form
      * @param field
      * @param previousFlag

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/FormListener.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/FormListener.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/FormListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/FormListener.java Fri Oct  4 23:57:51 2013
@@ -54,7 +54,7 @@ public interface FormListener {
 
     /**
      * Called when a form section has been inserted.
-     * 
+     *
      * @param form
      * @param index
      */
@@ -62,7 +62,7 @@ public interface FormListener {
 
     /**
      * Called when form sections have been removed.
-     * 
+     *
      * @param form
      * @param index
      * @param removed
@@ -71,14 +71,14 @@ public interface FormListener {
 
     /**
      * Called when a form section's heading has changed.
-     * 
+     *
      * @param section
      */
     public void sectionHeadingChanged(Form.Section section);
 
     /**
      * Called when a form field has been inserted.
-     * 
+     *
      * @param section
      * @param index
      */
@@ -86,7 +86,7 @@ public interface FormListener {
 
     /**
      * Called when forms fields items have been removed.
-     * 
+     *
      * @param section
      * @param index
      * @param fields

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/FrameListener.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/FrameListener.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/FrameListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/FrameListener.java Fri Oct  4 23:57:51 2013
@@ -22,7 +22,7 @@ package org.apache.pivot.wtk;
 public interface FrameListener {
     /**
      * Called when a frame's menu bar has changed.
-     * 
+     *
      * @param frame
      * @param previousMenuBar
      */

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/GraphicsUtilities.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/GraphicsUtilities.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/GraphicsUtilities.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/GraphicsUtilities.java Fri Oct  4 23:57:51 2013
@@ -100,7 +100,7 @@ public final class GraphicsUtilities {
      * pixels with the graphics context's paint. For this reason, and because
      * Pivot supports scaling the display host, it is recommended that skins use
      * this method over <tt>java.awt.Graphics#drawRect</tt>.
-     * 
+     *
      * @param graphics The graphics context that will be used to perform the
      * operation.
      * @param x The x-coordinate of the upper-left corner of the rectangle.
@@ -124,7 +124,7 @@ public final class GraphicsUtilities {
      * pixels with the graphics context's paint. For this reason, and because
      * Pivot supports scaling the display host, it is recommended that skins use
      * this method over <tt>java.awt.Graphics#drawRect</tt>.
-     * 
+     *
      * @param graphics The graphics context that will be used to perform the
      * operation.
      * @param x The x-coordinate of the upper-left corner of the rectangle.
@@ -159,7 +159,7 @@ public final class GraphicsUtilities {
 
     /**
      * Interprets a string as a color value.
-     * 
+     *
      * @param value One of the following forms: <ul> <li>0xdddddddd - 8
      * hexadecimal digits, specifying 8 bits each of red, green, and blue,
      * followed by 8 bits of alpha.</li> <li>#dddddd - 6 hexadecimal digits,
@@ -223,7 +223,7 @@ public final class GraphicsUtilities {
 
     /**
      * Interpret a string as a {@link Paint} value
-     * 
+     *
      * @param value Either (a) One of the
      * {@linkplain GraphicsUtilities#decodeColor color values recognized by
      * Pivot} or (b) A {@linkplain GraphicsUtilities#decodePaint(Dictionary)
@@ -250,7 +250,7 @@ public final class GraphicsUtilities {
 
     /**
      * Interpret a dictionary as a {@link Paint} value
-     * 
+     *
      * @param dictionary A dictionary containing a key {@value #PAINT_TYPE_KEY}
      * and further elements according to its value: <ul> <li><b>solid_color</b>
      * - key {@value #COLOR_KEY} with value being any of the

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/GridPane.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/GridPane.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/GridPane.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/GridPane.java Fri Oct  4 23:57:51 2013
@@ -40,7 +40,7 @@ public class GridPane extends Container 
 
         /**
          * Returns the grid pane with which this row is associated.
-         * 
+         *
          * @return The row's grid pane, or <tt>null</tt> if the row does not
          * currently belong to a grid.
          */
@@ -326,7 +326,7 @@ public class GridPane extends Container 
 
     /**
      * Creates a new grid pane with the specified column count.
-     * 
+     *
      * @param columnCount
      */
     public GridPane(int columnCount) {
@@ -358,7 +358,7 @@ public class GridPane extends Container 
 
     /**
      * Sets the number of columns in the grid pane.
-     * 
+     *
      * @param columnCount
      */
     public void setColumnCount(int columnCount) {
@@ -372,7 +372,7 @@ public class GridPane extends Container 
 
     /**
      * Returns the grid pane row sequence.
-     * 
+     *
      * @return The grid pane row sequence
      */
     public RowSequence getRows() {
@@ -381,7 +381,7 @@ public class GridPane extends Container 
 
     /**
      * Returns the index of the row at a given location.
-     * 
+     *
      * @param y The y-coordinate of the row to identify.
      * @return The row index, or <tt>-1</tt> if there is no row at the given
      * y-coordinate.
@@ -393,7 +393,7 @@ public class GridPane extends Container 
 
     /**
      * Returns the bounds of a given row.
-     * 
+     *
      * @param row The row index.
      */
     public Bounds getRowBounds(int row) {
@@ -403,7 +403,7 @@ public class GridPane extends Container 
 
     /**
      * Returns the index of the column at a given location.
-     * 
+     *
      * @param x The x-coordinate of the column to identify.
      * @return The column index, or <tt>-1</tt> if there is no column at the
      * given x-coordinate.
@@ -415,7 +415,7 @@ public class GridPane extends Container 
 
     /**
      * Returns the bounds of a given column.
-     * 
+     *
      * @param column The column index.
      */
     public Bounds getColumnBounds(int column) {
@@ -425,7 +425,7 @@ public class GridPane extends Container 
 
     /**
      * Gets the component at the specified cell in this grid pane.
-     * 
+     *
      * @param rowIndex The row index of the cell
      * @param columnIndex The column index of the cell
      * @return The component in the specified cell, or <tt>null</tt> if the cell
@@ -446,7 +446,7 @@ public class GridPane extends Container 
     /**
      * Overrides the base method to check whether or not a cell component is
      * being removed, and fires the appropriate event in that case.
-     * 
+     *
      * @param index The index at which components were removed
      * @param count The number of components removed
      * @return The sequence of components that were removed

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/GridPaneListener.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/GridPaneListener.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/GridPaneListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/GridPaneListener.java Fri Oct  4 23:57:51 2013
@@ -59,7 +59,7 @@ public interface GridPaneListener {
 
     /**
      * Called when a grid pane's column count has changed.
-     * 
+     *
      * @param gridPane
      * @param previousColumnCount
      */
@@ -67,7 +67,7 @@ public interface GridPaneListener {
 
     /**
      * Called when a row has been inserted into a grid pane.
-     * 
+     *
      * @param gridPane
      * @param index
      */
@@ -75,7 +75,7 @@ public interface GridPaneListener {
 
     /**
      * Called when rows have been removed from a grid pane.
-     * 
+     *
      * @param gridPane
      * @param index
      * @param rows
@@ -84,7 +84,7 @@ public interface GridPaneListener {
 
     /**
      * Called when a cell has been inserted into a grid pane.
-     * 
+     *
      * @param row
      * @param column
      */
@@ -92,7 +92,7 @@ public interface GridPaneListener {
 
     /**
      * Called when cell's have been removed from a grid pane.
-     * 
+     *
      * @param row
      * @param column
      * @param removed
@@ -101,7 +101,7 @@ public interface GridPaneListener {
 
     /**
      * Called when a cell has been updated in a grid pane.
-     * 
+     *
      * @param row
      * @param column
      * @param previousComponent

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/ImageView.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/ImageView.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/ImageView.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/ImageView.java Fri Oct  4 23:57:51 2013
@@ -52,7 +52,7 @@ public class ImageView extends Component
         /**
          * Converts a value from the bind context to an image representation
          * during a {@link Component#load(Object)} operation.
-         * 
+         *
          * @param value
          */
         public Image toImage(Object value);
@@ -60,7 +60,7 @@ public class ImageView extends Component
         /**
          * Converts a value from the bind context to an image location during a
          * {@link Component#load(Object)} operation.
-         * 
+         *
          * @param value
          */
         public URL toImageURL(Object value);
@@ -68,7 +68,7 @@ public class ImageView extends Component
         /**
          * Converts a value from the bind context to an image resource name
          * during a {@link Component#load(Object)} operation.
-         * 
+         *
          * @param value
          */
         public String toImageName(Object value);
@@ -76,7 +76,7 @@ public class ImageView extends Component
         /**
          * Converts a text string to a value to be stored in the bind context
          * during a {@link Component#store(Object)} operation.
-         * 
+         *
          * @param image
          */
         public Object valueOf(Image image);
@@ -147,7 +147,7 @@ public class ImageView extends Component
 
     /**
      * Creates an image view with the given image.
-     * 
+     *
      * @param image The initial image to set, or <tt>null</tt> for no image.
      */
     public ImageView(Image image) {
@@ -158,7 +158,7 @@ public class ImageView extends Component
 
     /**
      * Returns the image view's current image.
-     * 
+     *
      * @return The current image, or <tt>null</tt> if no image is set.
      */
     public Image getImage() {
@@ -167,7 +167,7 @@ public class ImageView extends Component
 
     /**
      * Sets the image view's current image.
-     * 
+     *
      * @param image The image to set, or <tt>null</tt> for no image.
      */
     public void setImage(Image image) {
@@ -184,7 +184,7 @@ public class ImageView extends Component
      * exists in the application context resource cache, the cached value will
      * be used. Otherwise, the icon will be loaded synchronously and added to
      * the cache.
-     * 
+     *
      * @param imageURL The location of the image to set.
      */
     public final void setImage(final URL imageURL) {
@@ -248,7 +248,7 @@ public class ImageView extends Component
     /**
      * Sets the image view's image by
      * {@linkplain ClassLoader#getResource(String) resource name}.
-     * 
+     *
      * @param imageName The resource name of the image to set.
      * @see #setImage(URL)
      */
@@ -267,7 +267,7 @@ public class ImageView extends Component
 
     /**
      * Returns the image view's asynchronous flag.
-     * 
+     *
      * @return <tt>true</tt> if images specified via URL will be loaded in the
      * background; <tt>false</tt> if they will be loaded synchronously.
      */
@@ -277,7 +277,7 @@ public class ImageView extends Component
 
     /**
      * Sets the image view's asynchronous flag.
-     * 
+     *
      * @param asynchronous <tt>true</tt> if images specified via URL will be
      * loaded in the background; <tt>false</tt> if they will be loaded
      * synchronously.
@@ -291,7 +291,7 @@ public class ImageView extends Component
 
     /**
      * Returns the image view's image key.
-     * 
+     *
      * @return The image key, or <tt>null</tt> if no key is set.
      */
     public String getImageKey() {
@@ -300,7 +300,7 @@ public class ImageView extends Component
 
     /**
      * Sets the image view's image key.
-     * 
+     *
      * @param imageKey The image key, or <tt>null</tt> to clear the binding.
      */
     public void setImageKey(String imageKey) {

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/ImageViewBindingListener.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/ImageViewBindingListener.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/ImageViewBindingListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/ImageViewBindingListener.java Fri Oct  4 23:57:51 2013
@@ -43,7 +43,7 @@ public interface ImageViewBindingListene
 
     /**
      * Called when an image view's image key has changed.
-     * 
+     *
      * @param imageView
      * @param previousImageKey
      */
@@ -51,7 +51,7 @@ public interface ImageViewBindingListene
 
     /**
      * Called when a image views's image bind type has changed.
-     * 
+     *
      * @param imageView
      * @param previousImageBindType
      */
@@ -59,7 +59,7 @@ public interface ImageViewBindingListene
 
     /**
      * Called when an image view's text bind mapping has changed.
-     * 
+     *
      * @param imageView
      * @param previousImageBindMapping
      */

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/ImageViewListener.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/ImageViewListener.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/ImageViewListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/ImageViewListener.java Fri Oct  4 23:57:51 2013
@@ -39,7 +39,7 @@ public interface ImageViewListener {
 
     /**
      * Called when an image view's image has changed.
-     * 
+     *
      * @param imageView
      * @param previousImage
      */
@@ -47,7 +47,7 @@ public interface ImageViewListener {
 
     /**
      * Called when an image view's asynchronous flag has changed.
-     * 
+     *
      * @param imageView
      */
     public void asynchronousChanged(ImageView imageView);

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/Keyboard.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/Keyboard.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/Keyboard.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/Keyboard.java Fri Oct  4 23:57:51 2013
@@ -268,7 +268,7 @@ public final class Keyboard {
 
     /**
      * Tests the pressed state of a modifier.
-     * 
+     *
      * @param modifier
      * @return <tt>true</tt> if the modifier is pressed; <tt>false</tt>,
      * otherwise.
@@ -279,7 +279,7 @@ public final class Keyboard {
 
     /**
      * Returns the current drop action.
-     * 
+     *
      * @return The drop action corresponding to the currently pressed modifier
      * keys, or <tt>null</tt> if no modifiers are pressed.
      */

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/Label.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/Label.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/Label.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/Label.java Fri Oct  4 23:57:51 2013
@@ -30,7 +30,7 @@ public class Label extends Component {
         /**
          * Converts a value from the bind context to a text representation
          * during a {@link Component#load(Object)} operation.
-         * 
+         *
          * @param value
          */
         public String toString(Object value);
@@ -38,7 +38,7 @@ public class Label extends Component {
         /**
          * Converts a text string to a value to be stored in the bind context
          * during a {@link Component#store(Object)} operation.
-         * 
+         *
          * @param text
          */
         public Object valueOf(String text);
@@ -109,7 +109,7 @@ public class Label extends Component {
 
     /**
      * Returns the label's text.
-     * 
+     *
      * @return The text.
      */
     public String getText() {
@@ -118,7 +118,7 @@ public class Label extends Component {
 
     /**
      * Set the text of the Label.
-     * 
+     *
      * @param text The text to set, must be not null.
      */
     public void setText(String text) {
@@ -141,7 +141,7 @@ public class Label extends Component {
      * Utility method to set text to the given value, or to an empty string if
      * null (to avoid the setText throw an IllegalArgumentException). This is
      * useful to be called by code.
-     * 
+     *
      * @param text The text to set
      * @see #setText
      */
@@ -151,7 +151,7 @@ public class Label extends Component {
 
     /**
      * Returns the label's text key.
-     * 
+     *
      * @return The text key, or <tt>null</tt> if no text key is set.
      */
     public String getTextKey() {
@@ -160,7 +160,7 @@ public class Label extends Component {
 
     /**
      * Returns the maximum length of the label text.
-     * 
+     *
      * @return The maximum length of the label text.
      */
     public int getMaximumLength() {
@@ -169,7 +169,7 @@ public class Label extends Component {
 
     /**
      * Sets the maximum length of the label text.
-     * 
+     *
      * @param maximumLength The maximum length of the label text.
      */
     public void setMaximumLength(int maximumLength) {
@@ -193,7 +193,7 @@ public class Label extends Component {
 
     /**
      * Sets the label's text key.
-     * 
+     *
      * @param textKey The text key, or <tt>null</tt> to clear the binding.
      */
     public void setTextKey(String textKey) {

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/LabelBindingListener.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/LabelBindingListener.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/LabelBindingListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/LabelBindingListener.java Fri Oct  4 23:57:51 2013
@@ -43,7 +43,7 @@ public interface LabelBindingListener {
 
     /**
      * Called when a label's text key has changed.
-     * 
+     *
      * @param label
      * @param previousTextKey
      */
@@ -51,7 +51,7 @@ public interface LabelBindingListener {
 
     /**
      * Called when a label's text bind type has changed.
-     * 
+     *
      * @param label
      * @param previousTextBindType
      */
@@ -59,7 +59,7 @@ public interface LabelBindingListener {
 
     /**
      * Called when a label's text bind mapping has changed.
-     * 
+     *
      * @param label
      * @param previousTextBindMapping
      */

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/LabelListener.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/LabelListener.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/LabelListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/LabelListener.java Fri Oct  4 23:57:51 2013
@@ -38,7 +38,7 @@ public interface LabelListener {
 
     /**
      * Called when a label's text has changed.
-     * 
+     *
      * @param label
      * @param previousText
      */
@@ -46,7 +46,7 @@ public interface LabelListener {
 
     /**
      * Called when a label text maximum length has changed.
-     * 
+     *
      * @param label
      * @param previousMaximumLength
      */

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/Limits.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/Limits.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/Limits.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/Limits.java Fri Oct  4 23:57:51 2013
@@ -77,7 +77,7 @@ public final class Limits implements Ser
     /**
      * Limits the specified value to the minimum and maximum values of this
      * object.
-     * 
+     *
      * @param value The value to limit.
      * @return The bounded value.
      */

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/ListButton.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/ListButton.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/ListButton.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/ListButton.java Fri Oct  4 23:57:51 2013
@@ -300,7 +300,7 @@ public class ListButton extends Button {
 
     /**
      * Creates a list button with the given button data and an empty list.
-     * 
+     *
      * @param buttonData
      */
     public ListButton(Object buttonData) {
@@ -309,7 +309,7 @@ public class ListButton extends Button {
 
     /**
      * Creates a list button with no button data and the given list data.
-     * 
+     *
      * @param listData
      */
     public ListButton(List<?> listData) {
@@ -321,7 +321,7 @@ public class ListButton extends Button {
      * the default renderer uses (as last option) the toString method on list
      * elements, so override it to return whatever you want to display in the
      * ListView, or implement your own custom renderer.
-     * 
+     *
      * @param buttonData The button data.
      * @param listData The data to set.
      * @see ListButtonDataRenderer
@@ -365,7 +365,7 @@ public class ListButton extends Button {
 
     /**
      * Returns the list data associated with this list button.
-     * 
+     *
      * @return The list data.
      */
     public List<?> getListData() {
@@ -374,7 +374,7 @@ public class ListButton extends Button {
 
     /**
      * Sets the list button's list data.
-     * 
+     *
      * @param listData The list data to be presented by the list button.
      */
     @SuppressWarnings("unchecked")
@@ -410,7 +410,7 @@ public class ListButton extends Button {
 
     /**
      * Sets the list button's list data.
-     * 
+     *
      * @param listData The list data to be presented by the list button as a
      * JSON array.
      */
@@ -428,7 +428,7 @@ public class ListButton extends Button {
 
     /**
      * Sets the list button's list data.
-     * 
+     *
      * @param listData A URL referring to a JSON file containing the data to be
      * presented by the list button.
      */
@@ -450,7 +450,7 @@ public class ListButton extends Button {
 
     /**
      * Returns the renderer used to display items in the list.
-     * 
+     *
      * @return The item renderer instance.
      */
     public ListView.ItemRenderer getItemRenderer() {
@@ -461,7 +461,7 @@ public class ListButton extends Button {
      * Sets the renderer used to display items in the list. <p> Use
      * {@link #setDataRenderer(org.apache.pivot.wtk.Button.DataRenderer)} to
      * define the renderer used to draw the button data.
-     * 
+     *
      * @param itemRenderer The item renderer instance.
      */
     public void setItemRenderer(ListView.ItemRenderer itemRenderer) {
@@ -482,7 +482,7 @@ public class ListButton extends Button {
 
     /**
      * Sets the list button's repeatable flag.
-     * 
+     *
      * @param repeatable
      */
     public void setRepeatable(boolean repeatable) {
@@ -494,7 +494,7 @@ public class ListButton extends Button {
 
     /**
      * Returns the current selection.
-     * 
+     *
      * @return The index of the currently selected list item, or <tt>-1</tt> if
      * nothing is selected.
      */
@@ -504,7 +504,7 @@ public class ListButton extends Button {
 
     /**
      * Sets the selection.
-     * 
+     *
      * @param selectedIndex The index of the list item to select, or <tt>-1</tt>
      * to clear the selection.
      */
@@ -539,7 +539,7 @@ public class ListButton extends Button {
 
     /**
      * Returns an item's disabled state.
-     * 
+     *
      * @param index The index of the item whose disabled state is to be tested.
      * @return <tt>true</tt> if the item is disabled; <tt>false</tt>, otherwise.
      */
@@ -557,7 +557,7 @@ public class ListButton extends Button {
 
     /**
      * Returns the disabled item filter.
-     * 
+     *
      * @return The disabled item filter, or <tt>null</tt> if no disabled item
      * filter is set.
      */
@@ -567,7 +567,7 @@ public class ListButton extends Button {
 
     /**
      * Sets the disabled item filter.
-     * 
+     *
      * @param disabledItemFilter The disabled item filter, or <tt>null</tt> for
      * no disabled item filter.
      */
@@ -590,7 +590,7 @@ public class ListButton extends Button {
     /**
      * Sets the list size. If the number of items in the list exceeds this
      * value, the list will scroll.
-     * 
+     *
      * @param listSize
      */
     public void setListSize(int listSize) {
@@ -607,7 +607,7 @@ public class ListButton extends Button {
 
     /**
      * Returns name of the key that is used in context binding.
-     * 
+     *
      * @return The key.
      */
     public String getListDataKey() {
@@ -616,7 +616,7 @@ public class ListButton extends Button {
 
     /**
      * Set the name of the key that is used in context binding.
-     * 
+     *
      * @param listDataKey The key to set.
      */
     public void setListDataKey(String listDataKey) {

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/ListButtonBindingListener.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/ListButtonBindingListener.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/ListButtonBindingListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/ListButtonBindingListener.java Fri Oct  4 23:57:51 2013
@@ -60,7 +60,7 @@ public interface ListButtonBindingListen
 
     /**
      * Called when a list button's list data key has changed.
-     * 
+     *
      * @param listButton
      * @param previousListDataKey
      */
@@ -68,7 +68,7 @@ public interface ListButtonBindingListen
 
     /**
      * Called when a list button's list data bind type has changed.
-     * 
+     *
      * @param listButton
      * @param previousListDataBindType
      */
@@ -76,7 +76,7 @@ public interface ListButtonBindingListen
 
     /**
      * Called when a list button's list data bind mapping has changed.
-     * 
+     *
      * @param listButton
      * @param previousListDataBindMapping
      */
@@ -85,7 +85,7 @@ public interface ListButtonBindingListen
 
     /**
      * Called when a list button's selected item key has changed.
-     * 
+     *
      * @param listButton
      * @param previousSelectedItemKey
      */
@@ -93,7 +93,7 @@ public interface ListButtonBindingListen
 
     /**
      * Called when a list button's selected item bind type has changed.
-     * 
+     *
      * @param listButton
      * @param previousSelectedItemBindType
      */
@@ -102,7 +102,7 @@ public interface ListButtonBindingListen
 
     /**
      * Called when a list button's selected item bind mapping has changed.
-     * 
+     *
      * @param listButton
      * @param previousSelectedItemBindMapping
      */

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/ListButtonItemListener.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/ListButtonItemListener.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/ListButtonItemListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/ListButtonItemListener.java Fri Oct  4 23:57:51 2013
@@ -52,7 +52,7 @@ public interface ListButtonItemListener 
 
     /**
      * Called when an item is inserted into a list button's list data.
-     * 
+     *
      * @param listButton
      * @param index
      */
@@ -60,7 +60,7 @@ public interface ListButtonItemListener 
 
     /**
      * Called when items are removed from a list button's list data.
-     * 
+     *
      * @param listButton
      * @param index
      * @param count
@@ -69,7 +69,7 @@ public interface ListButtonItemListener 
 
     /**
      * Called when an item is updated within a list button's list data.
-     * 
+     *
      * @param listButton
      * @param index
      */
@@ -77,14 +77,14 @@ public interface ListButtonItemListener 
 
     /**
      * Called when a list button's list data has been cleared.
-     * 
+     *
      * @param listButton
      */
     public void itemsCleared(ListButton listButton);
 
     /**
      * Called when a list button's list data is sorted.
-     * 
+     *
      * @param listButton
      */
     public void itemsSorted(ListButton listButton);

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/ListButtonListener.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/ListButtonListener.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/ListButtonListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/ListButtonListener.java Fri Oct  4 23:57:51 2013
@@ -57,7 +57,7 @@ public interface ListButtonListener {
 
     /**
      * Called when a list button's list data has changed.
-     * 
+     *
      * @param listButton
      * @param previousListData
      */
@@ -65,7 +65,7 @@ public interface ListButtonListener {
 
     /**
      * Called when a list button's item renderer has changed.
-     * 
+     *
      * @param listButton
      * @param previousItemRenderer
      */
@@ -74,14 +74,14 @@ public interface ListButtonListener {
 
     /**
      * Called when a list button's repeatable flag has changed.
-     * 
+     *
      * @param listButton
      */
     public void repeatableChanged(ListButton listButton);
 
     /**
      * Called when a list button's disabled item filter has changed.
-     * 
+     *
      * @param listButton
      * @param previousDisabledItemFilter
      */
@@ -90,7 +90,7 @@ public interface ListButtonListener {
 
     /**
      * Called when a list button's list size has changed.
-     * 
+     *
      * @param listButton
      * @param previousListSize
      */

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/ListButtonSelectionListener.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/ListButtonSelectionListener.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/ListButtonSelectionListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/ListButtonSelectionListener.java Fri Oct  4 23:57:51 2013
@@ -37,7 +37,7 @@ public interface ListButtonSelectionList
 
     /**
      * Called when a list button's selected index has changed.
-     * 
+     *
      * @param listButton The source of the event.
      * @param previousSelectedIndex If the selection changed directly, contains
      * the index that was previously selected. Otherwise, contains the current
@@ -47,7 +47,7 @@ public interface ListButtonSelectionList
 
     /**
      * Called when a list button's selected item has changed.
-     * 
+     *
      * @param listButton The source of the event.
      * @param previousSelectedItem The item that was previously selected, or
      * <tt>null</tt> if the previous selection cannot be determined.

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/ListView.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/ListView.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/ListView.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/ListView.java Fri Oct  4 23:57:51 2013
@@ -67,7 +67,7 @@ public class ListView extends Component 
     public interface ItemRenderer extends Renderer {
         /**
          * Prepares the renderer for layout or paint.
-         * 
+         *
          * @param item The item to render, or <tt>null</tt> if called to
          * calculate preferred height for skins that assume a fixed renderer
          * height.
@@ -84,7 +84,7 @@ public class ListView extends Component 
 
         /**
          * Converts a list item to a string representation.
-         * 
+         *
          * @param item
          * @return The item's string representation, or <tt>null</tt> if the item
          * does not have a string representation. <p> Note that this method may
@@ -100,7 +100,7 @@ public class ListView extends Component 
     public interface ItemEditor {
         /**
          * Called to begin editing a list item.
-         * 
+         *
          * @param listView
          * @param itemIndex
          */
@@ -108,7 +108,7 @@ public class ListView extends Component 
 
         /**
          * Terminates an edit operation.
-         * 
+         *
          * @param result <tt>true</tt> to perform the edit; <tt>false</tt> to
          * cancel it.
          */
@@ -138,7 +138,7 @@ public class ListView extends Component 
         /**
          * Converts a context value to list data during a
          * {@link Component#load(Object)} operation.
-         * 
+         *
          * @param value
          */
         public List<?> toListData(Object value);
@@ -146,7 +146,7 @@ public class ListView extends Component 
         /**
          * Converts list data to a context value during a
          * {@link Component#store(Object)} operation.
-         * 
+         *
          * @param listData
          */
         public Object valueOf(List<?> listData);
@@ -160,7 +160,7 @@ public class ListView extends Component 
         /**
          * Returns the index of the item in the source list during a
          * {@link Component#load(Object)} operation.
-         * 
+         *
          * @param listData The source list data.
          * @param value The value to locate.
          * @return The index of first occurrence of the value if it exists in the
@@ -171,7 +171,7 @@ public class ListView extends Component 
         /**
          * Retrieves the value at the given index during a
          * {@link Component#store(Object)} operation.
-         * 
+         *
          * @param listData The source list data.
          * @param index The index of the value to retrieve.
          */
@@ -572,7 +572,7 @@ public class ListView extends Component 
      * default renderer uses (as last option) the toString method on list
      * elements, so override it to return whatever you want to display in the
      * ListView, or implement your own custom renderer.
-     * 
+     *
      * @param listData The data to set.
      * @see ListViewItemRenderer
      */
@@ -585,7 +585,7 @@ public class ListView extends Component 
 
     /**
      * Returns the list data.
-     * 
+     *
      * @return The data currently presented by the list view.
      */
     public List<?> getListData() {
@@ -594,7 +594,7 @@ public class ListView extends Component 
 
     /**
      * Sets the list data.
-     * 
+     *
      * @param listData The data to be presented by the list view.
      */
     @SuppressWarnings("unchecked")
@@ -636,7 +636,7 @@ public class ListView extends Component 
 
     /**
      * Sets the list data.
-     * 
+     *
      * @param listData A JSON string (must begin with <tt>[</tt> and end with
      * <tt>]</tt>) denoting the data to be presented by the list view.
      */
@@ -654,7 +654,7 @@ public class ListView extends Component 
 
     /**
      * Sets the list data.
-     * 
+     *
      * @param listData A URL referring to a JSON file containing the data to be
      * presented by the list view.
      */
@@ -693,7 +693,7 @@ public class ListView extends Component 
 
     /**
      * Sets the item renderer to be used for items in this list.
-     * 
+     *
      * @param itemRenderer The item renderer for the list.
      */
     public void setItemRenderer(ItemRenderer itemRenderer) {
@@ -711,7 +711,7 @@ public class ListView extends Component 
 
     /**
      * Returns the editor used to edit items in this list.
-     * 
+     *
      * @return The item editor, or <tt>null</tt> if no editor is installed.
      */
     public ItemEditor getItemEditor() {
@@ -720,7 +720,7 @@ public class ListView extends Component 
 
     /**
      * Sets the editor used to edit items in this list.
-     * 
+     *
      * @param itemEditor The item editor for the list.
      */
     public void setItemEditor(ItemEditor itemEditor) {
@@ -734,7 +734,7 @@ public class ListView extends Component 
 
     /**
      * Returns the currently selected index, even when in multi-select mode.
-     * 
+     *
      * @return The currently selected index.
      */
     public int getSelectedIndex() {
@@ -743,7 +743,7 @@ public class ListView extends Component 
 
     /**
      * Sets the selection to a single index.
-     * 
+     *
      * @param index The index to select, or <tt>-1</tt> to clear the selection.
      */
     public void setSelectedIndex(int index) {
@@ -759,7 +759,7 @@ public class ListView extends Component 
 
     /**
      * Sets the selection to a single range.
-     * 
+     *
      * @param start
      * @param end
      */
@@ -772,7 +772,7 @@ public class ListView extends Component 
 
     /**
      * Returns the currently selected ranges.
-     * 
+     *
      * @return An immutable list containing the currently selected ranges. Note
      * that the returned list is a wrapper around the actual selection, not a
      * copy. Any changes made to the selection state will be reflected in the
@@ -786,7 +786,7 @@ public class ListView extends Component 
      * Sets the selection to the given range sequence. Any overlapping or
      * connecting ranges will be consolidated, and the resulting selection will
      * be sorted in ascending order.
-     * 
+     *
      * @param selectedRanges
      * @return The ranges that were actually set.
      */
@@ -834,7 +834,7 @@ public class ListView extends Component 
 
     /**
      * Sets the selection to the given range sequence.
-     * 
+     *
      * @param selectedRanges A JSON-formatted string containing the ranges to
      * select.
      * @return The ranges that were actually set.
@@ -869,7 +869,7 @@ public class ListView extends Component 
 
     /**
      * Returns the first selected index.
-     * 
+     *
      * @return The first selected index, or <tt>-1</tt> if nothing is selected.
      */
     public int getFirstSelectedIndex() {
@@ -878,7 +878,7 @@ public class ListView extends Component 
 
     /**
      * Returns the last selected index.
-     * 
+     *
      * @return The last selected index, or <tt>-1</tt> if nothing is selected.
      */
     public int getLastSelectedIndex() {
@@ -888,7 +888,7 @@ public class ListView extends Component 
 
     /**
      * Adds a single index to the selection.
-     * 
+     *
      * @param index The index to add.
      * @return <tt>true</tt> if the index was added to the selection;
      * <tt>false</tt>, otherwise.
@@ -900,7 +900,7 @@ public class ListView extends Component 
 
     /**
      * Adds a range of indexes to the selection.
-     * 
+     *
      * @param start The first index in the range.
      * @param end The last index in the range.
      * @return The ranges that were added to the selection.
@@ -931,7 +931,7 @@ public class ListView extends Component 
 
     /**
      * Adds a range of indexes to the selection.
-     * 
+     *
      * @param range The range to add.
      * @return The ranges that were added to the selection.
      */
@@ -945,7 +945,7 @@ public class ListView extends Component 
 
     /**
      * Removes a single index from the selection.
-     * 
+     *
      * @param index The index to remove.
      * @return <tt>true</tt> if the index was removed from the selection;
      * <tt>false</tt>, otherwise.
@@ -957,7 +957,7 @@ public class ListView extends Component 
 
     /**
      * Removes a range of indexes from the selection.
-     * 
+     *
      * @param start The start of the range to remove.
      * @param end The end of the range to remove.
      * @return The ranges that were removed from the selection.
@@ -989,7 +989,7 @@ public class ListView extends Component 
 
     /**
      * Removes a range of indexes from the selection.
-     * 
+     *
      * @param range The range to remove.
      * @return The ranges that were removed from the selection.
      */
@@ -1019,7 +1019,7 @@ public class ListView extends Component 
 
     /**
      * Returns the selection state of a given index.
-     * 
+     *
      * @param index The index whose selection state is to be tested.
      * @return <tt>true</tt> if the index is selected; <tt>false</tt>, otherwise.
      */
@@ -1095,7 +1095,7 @@ public class ListView extends Component 
     /**
      * Sets the selection mode. Clears the selection if the mode has changed
      * (but does not fire a selection change event).
-     * 
+     *
      * @param selectMode The new selection mode.
      */
     public void setSelectMode(SelectMode selectMode) {
@@ -1127,7 +1127,7 @@ public class ListView extends Component 
     /**
      * Enables or disabled checkmarks. Clears the check state if the check mode
      * has changed (but does not fire any check state change events).
-     * 
+     *
      * @param checkmarksEnabled
      */
     public void setCheckmarksEnabled(boolean checkmarksEnabled) {
@@ -1145,7 +1145,7 @@ public class ListView extends Component 
 
     /**
      * Returns an item's checked state.
-     * 
+     *
      * @param index
      */
     public boolean isItemChecked(int index) {
@@ -1154,7 +1154,7 @@ public class ListView extends Component 
 
     /**
      * Sets an item's checked state.
-     * 
+     *
      * @param index
      * @param checked
      */
@@ -1197,7 +1197,7 @@ public class ListView extends Component 
 
     /**
      * Tells whether or not an item's checkmark is disabled.
-     * 
+     *
      * @param index The index of the item whose disabled checkmark state is to
      * be tested.
      * @return <tt>true</tt> if the item's checkmark is disabled; <tt>false</tt>
@@ -1223,7 +1223,7 @@ public class ListView extends Component 
      * all checkboxes will be interactive. <p> <b>Note:</b> this filter is only
      * relavent if {@link #setCheckmarksEnabled(boolean) checkmarksEnabled} is
      * set to true.
-     * 
+     *
      * @return The disabled checkmark filter, or <tt>null</tt> if no disabled
      * checkmark filter is set
      */
@@ -1239,7 +1239,7 @@ public class ListView extends Component 
      * checkboxes will be interactive. <p> <b>Note:</b> this filter is only
      * relavent if {@link #setCheckmarksEnabled(boolean) checkmarksEnabled} is
      * set to true. enabled.
-     * 
+     *
      * @param disabledCheckmarkFilter The disabled checkmark filter, or
      * <tt>null</tt> for no disabled checkmark filter
      */
@@ -1254,7 +1254,7 @@ public class ListView extends Component 
 
     /**
      * Returns an item's disabled state.
-     * 
+     *
      * @param index The index of the item whose disabled state is to be tested.
      * @return <tt>true</tt> if the item is disabled; <tt>false</tt>, otherwise.
      */
@@ -1272,7 +1272,7 @@ public class ListView extends Component 
 
     /**
      * Returns the disabled item filter.
-     * 
+     *
      * @return The disabled item filter, or <tt>null</tt> if no disabled item
      * filter is set.
      */
@@ -1282,7 +1282,7 @@ public class ListView extends Component 
 
     /**
      * Sets the disabled item filter.
-     * 
+     *
      * @param disabledItemFilter The disabled item filter, or <tt>null</tt> for
      * no disabled item filter.
      */
@@ -1297,7 +1297,7 @@ public class ListView extends Component 
 
     /**
      * Returns name of the key that is used in context binding.
-     * 
+     *
      * @return The key.
      */
     public String getListDataKey() {
@@ -1306,7 +1306,7 @@ public class ListView extends Component 
 
     /**
      * Set the name of the key that is used in context binding.
-     * 
+     *
      * @param listDataKey The key to set.
      */
     public void setListDataKey(String listDataKey) {
@@ -1689,7 +1689,7 @@ public class ListView extends Component 
 
     /**
      * Returns the index of the item at a given location.
-     * 
+     *
      * @param y The y-coordinate of the item to identify.
      * @return The item index, or <tt>-1</tt> if there is no item at the given
      * y-coordinate.
@@ -1701,7 +1701,7 @@ public class ListView extends Component 
 
     /**
      * Returns the bounding area of a given item.
-     * 
+     *
      * @param index The item index.
      * @return The bounding area of the item.
      */
@@ -1712,7 +1712,7 @@ public class ListView extends Component 
 
     /**
      * Returns the item indent.
-     * 
+     *
      * @return The horizontal space preceding items in the list.
      */
     public int getItemIndent() {

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/ListViewBindingListener.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/ListViewBindingListener.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/ListViewBindingListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/ListViewBindingListener.java Fri Oct  4 23:57:51 2013
@@ -94,7 +94,7 @@ public interface ListViewBindingListener
 
     /**
      * Called when a list view's list data key has changed.
-     * 
+     *
      * @param listView
      * @param previousListDataKey
      */
@@ -102,7 +102,7 @@ public interface ListViewBindingListener
 
     /**
      * Called when a list view's list data bind type has changed.
-     * 
+     *
      * @param listView
      * @param previousListDataBindType
      */
@@ -110,7 +110,7 @@ public interface ListViewBindingListener
 
     /**
      * Called when a list view's list data bind mapping has changed.
-     * 
+     *
      * @param listView
      * @param previousListDataBindMapping
      */
@@ -119,7 +119,7 @@ public interface ListViewBindingListener
 
     /**
      * Called when a list view's selected item key has changed.
-     * 
+     *
      * @param listView
      * @param previousSelectedItemKey
      */
@@ -127,7 +127,7 @@ public interface ListViewBindingListener
 
     /**
      * Called when a list view's selected item bind type has changed.
-     * 
+     *
      * @param listView
      * @param previousSelectedItemBindType
      */
@@ -135,7 +135,7 @@ public interface ListViewBindingListener
 
     /**
      * Called when a list view's selected item bind mapping has changed.
-     * 
+     *
      * @param listView
      * @param previousSelectedItemBindMapping
      */
@@ -144,7 +144,7 @@ public interface ListViewBindingListener
 
     /**
      * Called when a list view's selected items key has changed.
-     * 
+     *
      * @param listView
      * @param previousSelectedItemsKey
      */
@@ -152,7 +152,7 @@ public interface ListViewBindingListener
 
     /**
      * Called when a list view's selected items bind type has changed.
-     * 
+     *
      * @param listView
      * @param previousSelectedItemsBindType
      */
@@ -161,7 +161,7 @@ public interface ListViewBindingListener
 
     /**
      * Called when a list view's selected items bind mapping has changed.
-     * 
+     *
      * @param listView
      * @param previousSelectedItemsBindMapping
      */
@@ -170,7 +170,7 @@ public interface ListViewBindingListener
 
     /**
      * Called when a list view's checked items key has changed.
-     * 
+     *
      * @param listView
      * @param previousCheckedItemsKey
      */
@@ -178,7 +178,7 @@ public interface ListViewBindingListener
 
     /**
      * Called when a list view's checked items bind type has changed.
-     * 
+     *
      * @param listView
      * @param previousCheckedItemsBindType
      */
@@ -186,7 +186,7 @@ public interface ListViewBindingListener
 
     /**
      * Called when a list view's checked items bind mapping has changed.
-     * 
+     *
      * @param listView
      * @param previousCheckedItemsBindMapping
      */

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/ListViewItemListener.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/ListViewItemListener.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/ListViewItemListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/ListViewItemListener.java Fri Oct  4 23:57:51 2013
@@ -52,7 +52,7 @@ public interface ListViewItemListener {
 
     /**
      * Called when an item has been inserted into the list view.
-     * 
+     *
      * @param listView The source of the event.
      * @param index The index of the item that was inserted.
      */
@@ -60,7 +60,7 @@ public interface ListViewItemListener {
 
     /**
      * Called when items have been removed from the list view.
-     * 
+     *
      * @param listView The source of the event.
      * @param index The first index affected by the event.
      * @param count The number of items that were removed, or <tt>-1</tt> if all
@@ -70,7 +70,7 @@ public interface ListViewItemListener {
 
     /**
      * Called when an item in the list view has been updated.
-     * 
+     *
      * @param listView The source of the event.
      * @param index The first index affected by the event.
      */
@@ -78,14 +78,14 @@ public interface ListViewItemListener {
 
     /**
      * Called when the items in a list view have been cleared.
-     * 
+     *
      * @param listView
      */
     public void itemsCleared(ListView listView);
 
     /**
      * Called when the items in a list view have been sorted.
-     * 
+     *
      * @param listView The source of the event.
      */
     public void itemsSorted(ListView listView);

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/ListViewItemStateListener.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/ListViewItemStateListener.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/ListViewItemStateListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/ListViewItemStateListener.java Fri Oct  4 23:57:51 2013
@@ -22,7 +22,7 @@ package org.apache.pivot.wtk;
 public interface ListViewItemStateListener {
     /**
      * Called when an item's checked state has changed.
-     * 
+     *
      * @param listView
      * @param index
      */

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/ListViewListener.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/ListViewListener.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/ListViewListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/ListViewListener.java Fri Oct  4 23:57:51 2013
@@ -68,7 +68,7 @@ public interface ListViewListener {
 
     /**
      * Called when a list view's list data has changed.
-     * 
+     *
      * @param listView
      * @param previousListData
      */
@@ -76,7 +76,7 @@ public interface ListViewListener {
 
     /**
      * Called when a list view's item renderer has changed.
-     * 
+     *
      * @param listView
      * @param previousItemRenderer
      */
@@ -84,7 +84,7 @@ public interface ListViewListener {
 
     /**
      * Called when a list view's item editor has changed.
-     * 
+     *
      * @param listView
      * @param previousItemEditor
      */
@@ -92,7 +92,7 @@ public interface ListViewListener {
 
     /**
      * Called when a list view's select mode has changed.
-     * 
+     *
      * @param listView
      * @param previousSelectMode
      */
@@ -100,14 +100,14 @@ public interface ListViewListener {
 
     /**
      * Called when a list view's checkmarks enabled flag has changed.
-     * 
+     *
      * @param listView
      */
     public void checkmarksEnabledChanged(ListView listView);
 
     /**
      * Called when a list view's disabled item filter has changed.
-     * 
+     *
      * @param listView
      * @param previousDisabledItemFilter
      */
@@ -115,7 +115,7 @@ public interface ListViewListener {
 
     /**
      * Called when a list view's disabled checkmark filter has changed.
-     * 
+     *
      * @param listView
      * @param previousDisabledCheckmarkFilter
      */

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/ListViewSelectionListener.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/ListViewSelectionListener.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/ListViewSelectionListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/ListViewSelectionListener.java Fri Oct  4 23:57:51 2013
@@ -49,7 +49,7 @@ public interface ListViewSelectionListen
 
     /**
      * Called when a range has been added to a list view's selection.
-     * 
+     *
      * @param listView The source of the event.
      * @param rangeStart The start index of the range that was added, inclusive.
      * @param rangeEnd The end index of the range that was added, inclusive.
@@ -58,7 +58,7 @@ public interface ListViewSelectionListen
 
     /**
      * Called when a range has been removed from a list view's selection.
-     * 
+     *
      * @param listView The source of the event.
      * @param rangeStart The starting index of the range that was removed,
      * inclusive.
@@ -69,7 +69,7 @@ public interface ListViewSelectionListen
 
     /**
      * Called when a list view's selection state has changed.
-     * 
+     *
      * @param listView The source of the event.
      * @param previousSelectedRanges If the selection changed directly, contains
      * the ranges that were previously selected. If the selection changed
@@ -80,7 +80,7 @@ public interface ListViewSelectionListen
 
     /**
      * Called when a list view's selected item has changed.
-     * 
+     *
      * @param listView The source of the event.
      * @param previousSelectedItem The item that was previously selected.
      */