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 [6/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/TableView.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/TableView.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/TableView.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/TableView.java Fri Oct  4 23:57:51 2013
@@ -80,7 +80,7 @@ public class TableView extends Component
 
         /**
          * Creates a new column with no header data and a fixed default width.
-         * 
+         *
          * @param name The column name.
          */
         public Column(String name) {
@@ -89,7 +89,7 @@ public class TableView extends Component
 
         /**
          * Creates a new column with a fixed default width.
-         * 
+         *
          * @param name The column name.
          * @param headerData The column header data.
          */
@@ -99,7 +99,7 @@ public class TableView extends Component
 
         /**
          * Creates a new column with a fixed width.
-         * 
+         *
          * @param name The column name.
          * @param headerData The column header data.
          * @param width The width of the column.
@@ -110,7 +110,7 @@ public class TableView extends Component
 
         /**
          * Creates a new column.
-         * 
+         *
          * @param name The column name.
          * @param headerData The column header data.
          * @param width The width of the column.
@@ -125,7 +125,7 @@ public class TableView extends Component
 
         /**
          * Returns the table view with which this column is associated.
-         * 
+         *
          * @return The column's table view, or <tt>null</tt> if the column does
          * not currently belong to a table.
          */
@@ -135,7 +135,7 @@ public class TableView extends Component
 
         /**
          * Returns the column name.
-         * 
+         *
          * @return The column name.
          */
         public String getName() {
@@ -144,7 +144,7 @@ public class TableView extends Component
 
         /**
          * Sets the column name.
-         * 
+         *
          * @param name The column name.
          */
         public void setName(String name) {
@@ -161,7 +161,7 @@ public class TableView extends Component
 
         /**
          * Returns the column header data.
-         * 
+         *
          * @return The column header data, or <tt>null</tt> if the column has no
          * header data.
          */
@@ -171,7 +171,7 @@ public class TableView extends Component
 
         /**
          * Sets the column header data.
-         * 
+         *
          * @param headerData The column header data, or <tt>null</tt> for no
          * header data.
          */
@@ -197,7 +197,7 @@ public class TableView extends Component
 
         /**
          * Sets the column header data renderer.
-         * 
+         *
          * @param headerDataRenderer
          */
         public void setHeaderDataRenderer(HeaderDataRenderer headerDataRenderer) {
@@ -218,7 +218,7 @@ public class TableView extends Component
 
         /**
          * Returns the column width.
-         * 
+         *
          * @return The width of the column.
          */
         public int getWidth() {
@@ -227,7 +227,7 @@ public class TableView extends Component
 
         /**
          * Returns the relative flag.
-         * 
+         *
          * @return <tt>true</tt> if the column width is relative, <tt>false</tt>
          * if it is fixed.
          */
@@ -237,7 +237,7 @@ public class TableView extends Component
 
         /**
          * Set the column width.
-         * 
+         *
          * @param width The absolute width of the column.
          */
         public void setWidth(int width) {
@@ -246,7 +246,7 @@ public class TableView extends Component
 
         /**
          * Set the column width.
-         * 
+         *
          * @param width The encoded width of the row. If the string ends with
          * the '*' character, it is treated as a relative value. Otherwise, it
          * is considered an absolute value.
@@ -265,7 +265,7 @@ public class TableView extends Component
 
         /**
          * Sets the column width.
-         * 
+         *
          * @param width The width of the column.
          * @param relative <tt>true</tt> if the column width is relative,
          * <tt>false</tt> if it is fixed.
@@ -298,7 +298,7 @@ public class TableView extends Component
 
         /**
          * Sets the minimum and maximum widths the column can size to.
-         * 
+         *
          * @param minimumWidth Column width cannot be smaller than this size.
          * @param maximumWidth Column width cannot be greater than this size.
          */
@@ -328,7 +328,7 @@ public class TableView extends Component
 
         /**
          * Sets the minimum and maximum widths to which the column can size.
-         * 
+         *
          * @param widthLimits The new width limits.
          */
         public void setWidthLimits(Limits widthLimits) {
@@ -337,7 +337,7 @@ public class TableView extends Component
 
         /**
          * Gets the minimum width the column is allowed to be.
-         * 
+         *
          * @return Minimum column width.
          */
         public int getMinimumWidth() {
@@ -346,7 +346,7 @@ public class TableView extends Component
 
         /**
          * Sets the minimum width the column is allowed to be.
-         * 
+         *
          * @param minimumWidth Minimum column width.
          */
         public void setMinimumWidth(int minimumWidth) {
@@ -355,7 +355,7 @@ public class TableView extends Component
 
         /**
          * Get the maximum width the column is allowed to be.
-         * 
+         *
          * @return Maximum column width.
          */
         public int getMaximumWidth() {
@@ -364,7 +364,7 @@ public class TableView extends Component
 
         /**
          * Set the maximum width the column is allowed to be.
-         * 
+         *
          * @param maximumWidth Maximum column width.
          */
         public void setMaximumWidth(int maximumWidth) {
@@ -373,7 +373,7 @@ public class TableView extends Component
 
         /**
          * Returns the column's filter.
-         * 
+         *
          * @return The column's filter, or <tt>null</tt> if the column does not
          * have a filter.
          */
@@ -383,7 +383,7 @@ public class TableView extends Component
 
         /**
          * Sets the column's filter.
-         * 
+         *
          * @param filter The column's filter, or <tt>null</tt> for no filter.
          */
         public void setFilter(Object filter) {
@@ -400,7 +400,7 @@ public class TableView extends Component
 
         /**
          * Returns the column's cell renderer.
-         * 
+         *
          * @return The cell renderer that is used to draw the contents of this
          * column.
          */
@@ -410,7 +410,7 @@ public class TableView extends Component
 
         /**
          * Sets the column's cell renderer.
-         * 
+         *
          * @param cellRenderer The cell renderer that is used to draw the
          * contents of this column.
          */
@@ -459,7 +459,7 @@ public class TableView extends Component
     public interface CellRenderer extends Renderer {
         /**
          * Prepares the renderer for layout or paint.
-         * 
+         *
          * @param row The row to render, or <tt>null</tt> if called to calculate
          * preferred height for skins that assume a fixed renderer height.
          * @param rowIndex The index of the row being rendered, or <tt>-1</tt> if
@@ -476,7 +476,7 @@ public class TableView extends Component
 
         /**
          * Converts table view cell data to a string representation.
-         * 
+         *
          * @param row
          * @param columnName
          * @return The cell data's string representation, or <tt>null</tt> if the
@@ -494,7 +494,7 @@ public class TableView extends Component
     public interface HeaderDataRenderer extends Renderer {
         /**
          * Prepares the renderer for layout or paint.
-         * 
+         *
          * @param data The data to render, or <tt>null</tt> if called to
          * calculate preferred height for skins that assume a fixed renderer
          * height.
@@ -508,7 +508,7 @@ public class TableView extends Component
 
         /**
          * Converts table view header data to a string representation.
-         * 
+         *
          * @param item
          * @return The data's string representation, or <tt>null</tt> if the data
          * does not have a string representation. <p> Note that this method may
@@ -524,7 +524,7 @@ public class TableView extends Component
     public interface RowEditor {
         /**
          * Called to begin editing a table row.
-         * 
+         *
          * @param tableView
          * @param rowIndex
          * @param columnIndex
@@ -533,7 +533,7 @@ public class TableView extends Component
 
         /**
          * Terminates an edit operation.
-         * 
+         *
          * @param result <tt>true</tt> to perform the edit; <tt>false</tt> to
          * cancel it.
          */
@@ -566,14 +566,14 @@ public class TableView extends Component
     public interface TableDataBindMapping {
         /**
          * Converts a context value to table data.
-         * 
+         *
          * @param value
          */
         public List<?> toTableData(Object value);
 
         /**
          * Converts table data to a context value.
-         * 
+         *
          * @param tableData
          */
         public Object valueOf(List<?> tableData);
@@ -585,7 +585,7 @@ public class TableView extends Component
     public interface SelectedRowBindMapping {
         /**
          * Returns the index of the row in the source list.
-         * 
+         *
          * @param tableData The source table data.
          * @param value The value to locate.
          * @return The index of first occurrence of the value if it exists in the
@@ -595,7 +595,7 @@ public class TableView extends Component
 
         /**
          * Retrieves the value at the given index.
-         * 
+         *
          * @param tableData The source table data.
          * @param index The index of the value to retrieve.
          */
@@ -1166,7 +1166,7 @@ public class TableView extends Component
 
     /**
      * Creates a new table view populated with the given table data.
-     * 
+     *
      * @param tableData
      */
     public TableView(List<?> tableData) {
@@ -1186,7 +1186,7 @@ public class TableView extends Component
 
     /**
      * Returns the table column sequence.
-     * 
+     *
      * @return The table column sequence.
      */
     public ColumnSequence getColumns() {
@@ -1201,7 +1201,7 @@ public class TableView extends Component
 
     /**
      * Returns the table data.
-     * 
+     *
      * @return The data currently presented by the table view.
      */
     public List<?> getTableData() {
@@ -1210,7 +1210,7 @@ public class TableView extends Component
 
     /**
      * Sets the table data.
-     * 
+     *
      * @param tableData The data to be presented by the table view.
      */
     @SuppressWarnings("unchecked")
@@ -1251,7 +1251,7 @@ public class TableView extends Component
 
     /**
      * Sets the table data.
-     * 
+     *
      * @param tableData A JSON string (must begin with <tt>[</tt> and end with
      * <tt>]</tt>) denoting the data to be presented by the table view.
      */
@@ -1269,7 +1269,7 @@ public class TableView extends Component
 
     /**
      * Sets the table data.
-     * 
+     *
      * @param tableData A URL referring to a JSON file containing the data to be
      * presented by the table view.
      */
@@ -1304,7 +1304,7 @@ public class TableView extends Component
 
     /**
      * Returns the editor used to edit rows in this table.
-     * 
+     *
      * @return The row editor, or <tt>null</tt> if no editor is installed.
      */
     public RowEditor getRowEditor() {
@@ -1313,7 +1313,7 @@ public class TableView extends Component
 
     /**
      * Sets the editor used to edit rows in this table.
-     * 
+     *
      * @param rowEditor The row editor for the list.
      */
     public void setRowEditor(RowEditor rowEditor) {
@@ -1327,7 +1327,7 @@ public class TableView extends Component
 
     /**
      * Returns the currently selected index, even when in multi-select mode.
-     * 
+     *
      * @return The currently selected index.
      */
     public int getSelectedIndex() {
@@ -1336,7 +1336,7 @@ public class TableView 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) {
@@ -1352,7 +1352,7 @@ public class TableView extends Component
 
     /**
      * Sets the selection to a single range.
-     * 
+     *
      * @param start
      * @param end
      */
@@ -1365,7 +1365,7 @@ public class TableView 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
@@ -1379,7 +1379,7 @@ public class TableView 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.
      */
@@ -1431,7 +1431,7 @@ public class TableView 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.
@@ -1466,7 +1466,7 @@ public class TableView extends Component
 
     /**
      * Returns the first selected index.
-     * 
+     *
      * @return The first selected index, or <tt>-1</tt> if nothing is selected.
      */
     public int getFirstSelectedIndex() {
@@ -1475,7 +1475,7 @@ public class TableView extends Component
 
     /**
      * Returns the last selected index.
-     * 
+     *
      * @return The last selected index, or <tt>-1</tt> if nothing is selected.
      */
     public int getLastSelectedIndex() {
@@ -1485,7 +1485,7 @@ public class TableView 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.
@@ -1497,7 +1497,7 @@ public class TableView 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.
@@ -1532,7 +1532,7 @@ public class TableView 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.
      */
@@ -1546,7 +1546,7 @@ public class TableView 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.
@@ -1558,7 +1558,7 @@ public class TableView 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.
@@ -1594,7 +1594,7 @@ public class TableView 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.
      */
@@ -1624,7 +1624,7 @@ public class TableView 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.
      */
@@ -1699,7 +1699,7 @@ public class TableView extends Component
 
     /**
      * Sets the selection mode. Clears the selection if the mode has changed.
-     * 
+     *
      * @param selectMode The new selection mode.
      */
     public void setSelectMode(SelectMode selectMode) {
@@ -1730,7 +1730,7 @@ public class TableView extends Component
 
     /**
      * Sets the table view's sort.
-     * 
+     *
      * @param columnName
      * @param sortDirection
      */
@@ -1746,7 +1746,7 @@ public class TableView extends Component
 
     /**
      * Sets the table view's sort.
-     * 
+     *
      * @param sort A sequence of key/value pairs representing the sort. Keys
      * represent column names and values represent sort direction.
      */
@@ -1775,7 +1775,7 @@ public class TableView extends Component
 
     /**
      * Sets the table view's sort.
-     * 
+     *
      * @param sort A JSON list containing JSON objects representing the sort.
      * @see #setSort(Sequence)
      */
@@ -1824,7 +1824,7 @@ public class TableView extends Component
 
     /**
      * Returns the disabled state of a given row.
-     * 
+     *
      * @param index The index of the row whose disabled state is to be tested.
      * @return <tt>true</tt> if the row is disabled; <tt>false</tt>, otherwise.
      */
@@ -1842,7 +1842,7 @@ public class TableView extends Component
 
     /**
      * Returns the disabled row filter.
-     * 
+     *
      * @return The disabled row filter, or <tt>null</tt> if no disabled row
      * filter is set.
      */
@@ -1852,7 +1852,7 @@ public class TableView extends Component
 
     /**
      * Sets the disabled row filter.
-     * 
+     *
      * @param disabledRowFilter The disabled row filter, or <tt>null</tt> for no
      * disabled row filter.
      */
@@ -2158,7 +2158,7 @@ public class TableView extends Component
 
     /**
      * 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.
@@ -2170,7 +2170,7 @@ public class TableView extends Component
 
     /**
      * 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.
@@ -2182,7 +2182,7 @@ public class TableView extends Component
 
     /**
      * Returns the bounding area of a given row.
-     * 
+     *
      * @param rowIndex The row index.
      * @return The bounding area of the row.
      */
@@ -2193,7 +2193,7 @@ public class TableView extends Component
 
     /**
      * Returns the bounding area of a given column.
-     * 
+     *
      * @param columnIndex The column index.
      * @return The bounding area of the column.
      */
@@ -2204,7 +2204,7 @@ public class TableView extends Component
 
     /**
      * Returns the bounding area of a given cell.
-     * 
+     *
      * @param rowIndex The row index of the cell.
      * @param columnIndex The column index of the cell.
      * @return The bounding area of the cell.

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewBindingListener.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewBindingListener.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewBindingListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewBindingListener.java Fri Oct  4 23:57:51 2013
@@ -77,7 +77,7 @@ public interface TableViewBindingListene
 
     /**
      * Called when a table view's table data key has changed.
-     * 
+     *
      * @param tableView
      * @param previousTableDataKey
      */
@@ -85,7 +85,7 @@ public interface TableViewBindingListene
 
     /**
      * Called when a table view's table data bind type has changed.
-     * 
+     *
      * @param tableView
      * @param previousTableDataBindType
      */
@@ -93,7 +93,7 @@ public interface TableViewBindingListene
 
     /**
      * Called when a table view's table data bind mapping has changed.
-     * 
+     *
      * @param tableView
      * @param previousTableDataBindMapping
      */
@@ -102,7 +102,7 @@ public interface TableViewBindingListene
 
     /**
      * Called when a table view's selected row key has changed.
-     * 
+     *
      * @param tableView
      * @param previousSelectedRowKey
      */
@@ -110,7 +110,7 @@ public interface TableViewBindingListene
 
     /**
      * Called when a table view's selected row bind type has changed.
-     * 
+     *
      * @param tableView
      * @param previousSelectedRowBindType
      */
@@ -118,7 +118,7 @@ public interface TableViewBindingListene
 
     /**
      * Called when a table view's selected row bind mapping has changed.
-     * 
+     *
      * @param tableView
      * @param previousSelectedRowBindMapping
      */
@@ -127,7 +127,7 @@ public interface TableViewBindingListene
 
     /**
      * Called when a table view's selected rows key has changed.
-     * 
+     *
      * @param tableView
      * @param previousSelectedRowsKey
      */
@@ -135,7 +135,7 @@ public interface TableViewBindingListene
 
     /**
      * Called when a table view's selected rows bind type has changed.
-     * 
+     *
      * @param tableView
      * @param previousSelectedRowsBindType
      */
@@ -144,7 +144,7 @@ public interface TableViewBindingListene
 
     /**
      * Called when a table view's selected rows bind mapping has changed.
-     * 
+     *
      * @param tableView
      * @param previousSelectedRowsBindMapping
      */

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewColumnListener.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewColumnListener.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewColumnListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewColumnListener.java Fri Oct  4 23:57:51 2013
@@ -79,7 +79,7 @@ public interface TableViewColumnListener
 
     /**
      * Called when a column is inserted into a table view's column sequence.
-     * 
+     *
      * @param tableView
      * @param index
      */
@@ -87,7 +87,7 @@ public interface TableViewColumnListener
 
     /**
      * Called when columns are removed from a table view's column sequence.
-     * 
+     *
      * @param tableView
      * @param index
      * @param columns
@@ -96,7 +96,7 @@ public interface TableViewColumnListener
 
     /**
      * Called when a column's name has changed.
-     * 
+     *
      * @param column
      * @param previousName
      */
@@ -104,7 +104,7 @@ public interface TableViewColumnListener
 
     /**
      * Called when a column's header data has changed.
-     * 
+     *
      * @param column
      * @param previousHeaderData
      */
@@ -112,7 +112,7 @@ public interface TableViewColumnListener
 
     /**
      * Called when a column's header data renderer has changed.
-     * 
+     *
      * @param column
      * @param previousHeaderDataRenderer
      */
@@ -121,7 +121,7 @@ public interface TableViewColumnListener
 
     /**
      * Called when a column's width has changed.
-     * 
+     *
      * @param column
      * @param previousWidth
      * @param previousRelative
@@ -131,7 +131,7 @@ public interface TableViewColumnListener
 
     /**
      * Called when a column's width limits have changed.
-     * 
+     *
      * @param column
      * @param previousMinimumWidth
      * @param previousMaximumWidth
@@ -141,7 +141,7 @@ public interface TableViewColumnListener
 
     /**
      * Called when a column's filter has changed.
-     * 
+     *
      * @param column
      * @param previousFilter
      */
@@ -149,7 +149,7 @@ public interface TableViewColumnListener
 
     /**
      * Called when a column's cell renderer has changed.
-     * 
+     *
      * @param column
      * @param previousCellRenderer
      */

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewHeader.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewHeader.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewHeader.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewHeader.java Fri Oct  4 23:57:51 2013
@@ -126,7 +126,7 @@ public class TableViewHeader extends Com
 
     /**
      * Returns the index of the header at a given location.
-     * 
+     *
      * @param x The x-coordinate of the header to identify.
      * @return The column index, or <tt>-1</tt> if there is no column at the
      * given x-coordinate.
@@ -138,7 +138,7 @@ public class TableViewHeader extends Com
 
     /**
      * Returns the bounding area of a given header.
-     * 
+     *
      * @param index The index of the header.
      * @return The bounding area of the header.
      */

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewHeaderListener.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewHeaderListener.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewHeaderListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewHeaderListener.java Fri Oct  4 23:57:51 2013
@@ -39,7 +39,7 @@ public interface TableViewHeaderListener
 
     /**
      * Called when a table view header's table view has changed.
-     * 
+     *
      * @param tableViewHeader
      * @param previousTableView
      */
@@ -47,7 +47,7 @@ public interface TableViewHeaderListener
 
     /**
      * Called when a table view header's sort mode has changed.
-     * 
+     *
      * @param tableViewHeader
      * @param previousSortMode
      */

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewHeaderPressListener.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewHeaderPressListener.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewHeaderPressListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewHeaderPressListener.java Fri Oct  4 23:57:51 2013
@@ -22,7 +22,7 @@ package org.apache.pivot.wtk;
 public interface TableViewHeaderPressListener {
     /**
      * Called when a table view header has been pressed.
-     * 
+     *
      * @param tableViewHeader
      * @param index
      */

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewListener.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewListener.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewListener.java Fri Oct  4 23:57:51 2013
@@ -56,7 +56,7 @@ public interface TableViewListener {
 
     /**
      * Called when a table view's table data has changed.
-     * 
+     *
      * @param tableView
      * @param previousTableData
      */
@@ -64,7 +64,7 @@ public interface TableViewListener {
 
     /**
      * Called when a table view's column source has changed.
-     * 
+     *
      * @param tableView
      * @param previousColumnSource
      */
@@ -72,7 +72,7 @@ public interface TableViewListener {
 
     /**
      * Called when a table view's row editor has changed.
-     * 
+     *
      * @param tableView
      * @param previousRowEditor
      */
@@ -80,7 +80,7 @@ public interface TableViewListener {
 
     /**
      * Called when a table view's select mode has changed.
-     * 
+     *
      * @param tableView
      * @param previousSelectMode
      */
@@ -88,7 +88,7 @@ public interface TableViewListener {
 
     /**
      * Called when a table view's disabled row filter has changed.
-     * 
+     *
      * @param tableView
      * @param previousDisabledRowFilter
      */

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

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewSelectionListener.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewSelectionListener.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewSelectionListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewSelectionListener.java Fri Oct  4 23:57:51 2013
@@ -49,7 +49,7 @@ public interface TableViewSelectionListe
 
     /**
      * Called when a range has been added to a table view's selection.
-     * 
+     *
      * @param tableView 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 TableViewSelectionListe
 
     /**
      * Called when a range has been removed from a table view's selection.
-     * 
+     *
      * @param tableView The source of the event.
      * @param rangeStart The start index of the range that was removed,
      * inclusive.
@@ -68,7 +68,7 @@ public interface TableViewSelectionListe
 
     /**
      * Called when a table view's selection state has been reset.
-     * 
+     *
      * @param tableView The source of the event.
      * @param previousSelectedRanges If the selection changed directly, contains
      * the ranges that were previously selected. If the selection changed
@@ -79,7 +79,7 @@ public interface TableViewSelectionListe
 
     /**
      * Called when a table view's selected item has changed.
-     * 
+     *
      * @param tableView The source of the event.
      * @param previousSelectedRow The row that was previously selected.
      */

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewSortListener.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewSortListener.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewSortListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/TableViewSortListener.java Fri Oct  4 23:57:51 2013
@@ -48,7 +48,7 @@ public interface TableViewSortListener {
 
     /**
      * Called when a sort has been added to a table view.
-     * 
+     *
      * @param tableView
      * @param columnName
      */
@@ -56,7 +56,7 @@ public interface TableViewSortListener {
 
     /**
      * Called when a sort has been updated in a table view.
-     * 
+     *
      * @param tableView
      * @param columnName
      * @param previousSortDirection
@@ -66,7 +66,7 @@ public interface TableViewSortListener {
 
     /**
      * Called when a sort has been removed from a table view.
-     * 
+     *
      * @param tableView
      * @param columnName
      * @param sortDirection
@@ -75,7 +75,7 @@ public interface TableViewSortListener {
 
     /**
      * Called when a table view's sort has changed.
-     * 
+     *
      * @param tableView
      */
     public void sortChanged(TableView tableView);

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/TaskAdapter.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/TaskAdapter.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/TaskAdapter.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/TaskAdapter.java Fri Oct  4 23:57:51 2013
@@ -63,7 +63,7 @@ public class TaskAdapter<T> implements T
     /**
      * Creates a new <tt>TaskAdapter</tt> that wraps the specified task
      * listener.
-     * 
+     *
      * @param taskListener The task listener that will be notified on the UI
      * thread
      */

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/TextArea.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/TextArea.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/TextArea.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/TextArea.java Fri Oct  4 23:57:51 2013
@@ -189,7 +189,7 @@ public class TextArea extends Component 
 
         /**
          * Called when text has been inserted into a paragraph.
-         * 
+         *
          * @param paragraph The source of the event.
          * @param index The index at which the text was inserted.
          * @param count The number of characters that were inserted.
@@ -198,7 +198,7 @@ public class TextArea extends Component 
 
         /**
          * Called when characters have been removed from a paragraph.
-         * 
+         *
          * @param paragraph The source of the event.
          * @param index The index from which the text was removed.
          * @param count The number of characters that were removed.
@@ -219,7 +219,7 @@ public class TextArea extends Component 
     public interface Skin {
         /**
          * Returns the insertion point for a given location.
-         * 
+         *
          * @param x
          * @param y
          */
@@ -228,7 +228,7 @@ public class TextArea extends Component 
         /**
          * Returns the next insertion point given an x coordinate and a
          * character index.
-         * 
+         *
          * @param x
          * @param from
          * @param direction
@@ -237,7 +237,7 @@ public class TextArea extends Component 
 
         /**
          * Returns the row index of the character at a given index.
-         * 
+         *
          * @param index
          */
         public int getRowAt(int index);
@@ -245,7 +245,7 @@ public class TextArea extends Component 
         /**
          * Returns the index of the first character in the row containing a
          * given character index.
-         * 
+         *
          * @param index
          */
         public int getRowOffset(int index);
@@ -253,7 +253,7 @@ public class TextArea extends Component 
         /**
          * Returns the number of characters in the row containing a given
          * character index.
-         * 
+         *
          * @param index
          */
         public int getRowLength(int index);
@@ -265,7 +265,7 @@ public class TextArea extends Component 
 
         /**
          * Returns the bounds of the character at a given index.
-         * 
+         *
          * @param index
          */
         public Bounds getCharacterBounds(int index);
@@ -284,7 +284,7 @@ public class TextArea 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);
@@ -292,7 +292,7 @@ public class TextArea 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);
@@ -609,7 +609,7 @@ public class TextArea extends Component 
 
     /**
      * Returns the text content of the text area.
-     * 
+     *
      * @return A string containing a copy of the text area's text content.
      */
     public String getText() {
@@ -618,7 +618,7 @@ public class TextArea extends Component 
 
     /**
      * Returns a portion of the text content of the text area.
-     * 
+     *
      * @param beginIndex
      * @param endIndex
      * @return A string containing a copy of the text area's text content.
@@ -664,7 +664,7 @@ public class TextArea extends Component 
 
     /**
      * Sets the text content of the text area.
-     * 
+     *
      * @param text
      */
     public void setText(String text) {
@@ -879,7 +879,7 @@ public class TextArea extends Component 
 
     /**
      * Returns the index of the paragraph containing a given character index.
-     * 
+     *
      * @param index
      */
     public int getParagraphAt(int index) {
@@ -897,7 +897,7 @@ public class TextArea extends Component 
 
     /**
      * Returns the character at a given index.
-     * 
+     *
      * @param index
      */
     public char getCharacterAt(int index) {
@@ -987,7 +987,7 @@ public class TextArea extends Component 
 
     /**
      * Returns the starting index of the selection.
-     * 
+     *
      * @return The starting index of the selection.
      */
     public int getSelectionStart() {
@@ -996,7 +996,7 @@ public class TextArea extends Component 
 
     /**
      * Returns the length of the selection.
-     * 
+     *
      * @return The length of the selection; may be <tt>0</tt>.
      */
     public int getSelectionLength() {
@@ -1005,7 +1005,7 @@ public class TextArea extends Component 
 
     /**
      * Returns a span representing the current selection.
-     * 
+     *
      * @return A span containing the current selection. Both start and end
      * points are inclusive. Returns <tt>null</tt> if the selection is empty.
      */
@@ -1017,7 +1017,7 @@ public class TextArea extends Component 
     /**
      * Sets the selection. The sum of the selection start and length must be
      * less than the length of the text area's content.
-     * 
+     *
      * @param selectionStart The starting index of the selection.
      * @param selectionLength The length of the selection.
      */
@@ -1044,7 +1044,7 @@ public class TextArea extends Component 
 
     /**
      * Sets the selection.
-     * 
+     *
      * @param selection
      * @see #setSelection(int, int)
      */
@@ -1072,7 +1072,7 @@ public class TextArea extends Component 
 
     /**
      * Returns the selected text.
-     * 
+     *
      * @return A string containing a copy of the selected text.
      */
     public String getSelectedText() {
@@ -1081,7 +1081,7 @@ public class TextArea extends Component 
 
     /**
      * Returns the maximum length of the text area's text content.
-     * 
+     *
      * @return The maximum length of the text area's text content.
      */
     public int getMaximumLength() {
@@ -1090,7 +1090,7 @@ public class TextArea extends Component 
 
     /**
      * Sets the maximum length of the text area's text content.
-     * 
+     *
      * @param maximumLength The maximum length of the text area's text content.
      */
     public void setMaximumLength(int maximumLength) {
@@ -1122,7 +1122,7 @@ public class TextArea extends Component 
 
     /**
      * Sets the text area's editable flag.
-     * 
+     *
      * @param editable
      */
     public void setEditable(boolean editable) {
@@ -1141,7 +1141,7 @@ public class TextArea extends Component 
 
     /**
      * Returns the text area's text key.
-     * 
+     *
      * @return The text key, or <tt>null</tt> if no text key is set.
      */
     public String getTextKey() {
@@ -1150,7 +1150,7 @@ public class TextArea extends Component 
 
     /**
      * Sets the text area's text key.
-     * 
+     *
      * @param textKey The text key, or <tt>null</tt> to clear the binding.
      */
     public void setTextKey(String textKey) {
@@ -1231,7 +1231,7 @@ public class TextArea extends Component 
      * Sets whether tab characters (<code>\t</code>) are expanded to an
      * appropriate number of spaces during {@link #setText} and
      * {@link #insertText} operations.
-     * 
+     *
      * @param expandTabs <code>true</code> to replace tab characters with space
      * characters (depending on the setting of the
      * {@link TextArea.Skin#getTabWidth} value) or <code>false</code> to leave

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

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/TextAreaContentListener.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/TextAreaContentListener.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/TextAreaContentListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/TextAreaContentListener.java Fri Oct  4 23:57:51 2013
@@ -46,7 +46,7 @@ public interface TextAreaContentListener
     /**
      * Called when a paragraph has been inserted into a text area's paragraph
      * sequence.
-     * 
+     *
      * @param textArea The source of the event.
      * @param index The index at which the paragraph was inserted.
      */
@@ -55,7 +55,7 @@ public interface TextAreaContentListener
     /**
      * Called when paragraphs have been removed from a text area's paragraph
      * sequence.
-     * 
+     *
      * @param textArea The source of the event.
      * @param index The starting index from which the paragraphs were removed.
      * @param removed The paragraphs that were removed.
@@ -64,7 +64,7 @@ public interface TextAreaContentListener
 
     /**
      * Called when a text area's text has changed.
-     * 
+     *
      * @param textArea The source of the event.
      */
     public void textChanged(TextArea textArea);

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/TextAreaListener.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/TextAreaListener.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/TextAreaListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/TextAreaListener.java Fri Oct  4 23:57:51 2013
@@ -37,7 +37,7 @@ public interface TextAreaListener {
 
     /**
      * Called when a text area's maximum length has changed.
-     * 
+     *
      * @param textArea
      * @param previousMaximumLength
      */
@@ -45,7 +45,7 @@ public interface TextAreaListener {
 
     /**
      * Called when a text area's editable state has changed.
-     * 
+     *
      * @param textArea
      */
     public void editableChanged(TextArea textArea);

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

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/TextInput.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/TextInput.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/TextInput.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/TextInput.java Fri Oct  4 23:57:51 2013
@@ -36,14 +36,14 @@ public class TextInput extends Component
     public interface Skin {
         /**
          * Returns the insertion point for a given location.
-         * 
+         *
          * @param x
          */
         public int getInsertionPoint(int x);
 
         /**
          * Returns the bounds of the character at a given index.
-         * 
+         *
          * @param index
          */
         public Bounds getCharacterBounds(int index);
@@ -56,7 +56,7 @@ public class TextInput 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);
@@ -64,7 +64,7 @@ public class TextInput 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);
@@ -306,7 +306,7 @@ public class TextInput extends Component
 
     /**
      * Returns the text content of the text input.
-     * 
+     *
      * @return A string containing a copy of the text input's text content.
      */
     public String getText() {
@@ -315,7 +315,7 @@ public class TextInput extends Component
 
     /**
      * Returns a portion of the text content of the text input.
-     * 
+     *
      * @param beginIndex
      * @param endIndex
      * @return A string containing a copy of the text area's text content.
@@ -469,7 +469,7 @@ public class TextInput extends Component
 
     /**
      * Returns the character at a given index.
-     * 
+     *
      * @param index
      */
     public char getCharacterAt(int index) {
@@ -550,7 +550,7 @@ public class TextInput extends Component
 
     /**
      * Returns the starting index of the selection.
-     * 
+     *
      * @return The starting index of the selection.
      */
     public int getSelectionStart() {
@@ -559,7 +559,7 @@ public class TextInput extends Component
 
     /**
      * Returns the length of the selection.
-     * 
+     *
      * @return The length of the selection; may be <tt>0</tt>.
      */
     public int getSelectionLength() {
@@ -568,7 +568,7 @@ public class TextInput extends Component
 
     /**
      * Returns a span representing the current selection.
-     * 
+     *
      * @return A span containing the current selection. Both start and end
      * points are inclusive. Returns <tt>null</tt> if the selection length is
      * <tt>0</tt>.
@@ -581,7 +581,7 @@ public class TextInput extends Component
     /**
      * Sets the selection. The sum of the selection start and length must be
      * less than the length of the text input's content.
-     * 
+     *
      * @param selectionStart The starting index of the selection.
      * @param selectionLength The length of the selection.
      */
@@ -608,7 +608,7 @@ public class TextInput extends Component
 
     /**
      * Sets the selection.
-     * 
+     *
      * @param selection
      * @see #setSelection(int, int)
      */
@@ -636,7 +636,7 @@ public class TextInput extends Component
 
     /**
      * Returns the currently selected text.
-     * 
+     *
      * @return A new string containing a copy of the text in the selected range.
      */
     public String getSelectedText() {
@@ -645,7 +645,7 @@ public class TextInput extends Component
 
     /**
      * Returns the text size.
-     * 
+     *
      * @return The number of characters to display in the text input.
      */
     public int getTextSize() {
@@ -654,7 +654,7 @@ public class TextInput extends Component
 
     /**
      * Sets the text size.
-     * 
+     *
      * @param textSize The number of characters to display in the text input.
      */
     public void setTextSize(int textSize) {
@@ -672,7 +672,7 @@ public class TextInput extends Component
 
     /**
      * Returns the maximum length of the text input's text content.
-     * 
+     *
      * @return The maximum length of the text input's text content.
      */
     public int getMaximumLength() {
@@ -681,7 +681,7 @@ public class TextInput extends Component
 
     /**
      * Sets the maximum length of the text input's text content.
-     * 
+     *
      * @param maximumLength The maximum length of the text input's text content.
      */
     public void setMaximumLength(int maximumLength) {
@@ -711,7 +711,7 @@ public class TextInput extends Component
 
     /**
      * Returns the password flag.
-     * 
+     *
      * @return <tt>true</tt> if this is a password text input; <tt>false</tt>,
      * otherwise.
      */
@@ -722,7 +722,7 @@ public class TextInput extends Component
     /**
      * Sets or clears the password flag. If the password flag is set, the text
      * input will visually mask its contents.
-     * 
+     *
      * @param password <tt>true</tt> if this is a password text input;
      * <tt>false</tt>, otherwise.
      */
@@ -742,7 +742,7 @@ public class TextInput extends Component
 
     /**
      * Sets the text input's prompt.
-     * 
+     *
      * @param prompt The prompt text, or <tt>null</tt> for no prompt.
      */
     public void setPrompt(String prompt) {
@@ -756,7 +756,7 @@ public class TextInput extends Component
 
     /**
      * Returns the text input's text key.
-     * 
+     *
      * @return The text key, or <tt>null</tt> if no text key is set.
      */
     public String getTextKey() {
@@ -765,7 +765,7 @@ public class TextInput extends Component
 
     /**
      * Sets the text input's text key.
-     * 
+     *
      * @param textKey The text key, or <tt>null</tt> to clear the binding.
      */
     public void setTextKey(String textKey) {
@@ -857,7 +857,7 @@ public class TextInput extends Component
 
     /**
      * Sets the validator associated with this text input.
-     * 
+     *
      * @param validator The validator to use, or <tt>null</tt> to use no
      * validator.
      */
@@ -892,7 +892,7 @@ public class TextInput extends Component
     /**
      * Sets the text input's strict validation flag. When enabled, only valid
      * text will be accepted by the text input.
-     * 
+     *
      * @param strictValidation
      */
     public void setStrictValidation(boolean strictValidation) {
@@ -905,7 +905,7 @@ public class TextInput extends Component
     /**
      * Reports whether this text input's text is currently valid as defined by
      * its validator.
-     * 
+     *
      * @return <tt>true</tt> if the text is valid or no validator is installed;
      * <tt>false</tt>, otherwise.
      */
@@ -922,7 +922,7 @@ public class TextInput extends Component
 
     /**
      * Sets the text area's editable flag.
-     * 
+     *
      * @param editable
      */
     public void setEditable(boolean editable) {

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

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/TextInputContentListener.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/TextInputContentListener.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/TextInputContentListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/TextInputContentListener.java Fri Oct  4 23:57:51 2013
@@ -64,7 +64,7 @@ public interface TextInputContentListene
 
     /**
      * Called to preview a text insertion.
-     * 
+     *
      * @param textInput The source of the event.
      * @param text The text that will be inserted.
      * @param index The index at which the text will be inserted.
@@ -73,7 +73,7 @@ public interface TextInputContentListene
 
     /**
      * Called when a text insertion has been vetoed.
-     * 
+     *
      * @param textInput The source of the event.
      * @param reason The reason the event was vetoed.
      */
@@ -81,7 +81,7 @@ public interface TextInputContentListene
 
     /**
      * Called when text has been inserted into a text input.
-     * 
+     *
      * @param textInput The source of the event.
      * @param index The index at which the text was inserted.
      * @param count The number of characters that were inserted.
@@ -90,7 +90,7 @@ public interface TextInputContentListene
 
     /**
      * Called to preview a text removal.
-     * 
+     *
      * @param textInput The source of the event.
      * @param index The starting index from which the text will be removed.
      */
@@ -98,7 +98,7 @@ public interface TextInputContentListene
 
     /**
      * Called when a text removal has been vetoed.
-     * 
+     *
      * @param textInput The source of the event.
      * @param reason The reason the event was vetoed.
      */
@@ -106,7 +106,7 @@ public interface TextInputContentListene
 
     /**
      * Called when text has been removed from a text input.
-     * 
+     *
      * @param textInput The source of the event.
      * @param index The index from which the text was removed.
      * @param count The number of characters that were removed.
@@ -115,7 +115,7 @@ public interface TextInputContentListene
 
     /**
      * Called when a text input's text has changed.
-     * 
+     *
      * @param textInput The source of the event.
      */
     public void textChanged(TextInput textInput);

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/TextInputListener.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/TextInputListener.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/TextInputListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/TextInputListener.java Fri Oct  4 23:57:51 2013
@@ -69,7 +69,7 @@ public interface TextInputListener {
 
     /**
      * Called when a text input's text size has changed.
-     * 
+     *
      * @param textInput
      * @param previousTextSize
      */
@@ -77,7 +77,7 @@ public interface TextInputListener {
 
     /**
      * Called when a text input's maximum length has changed.
-     * 
+     *
      * @param textInput
      * @param previousMaximumLength
      */
@@ -85,14 +85,14 @@ public interface TextInputListener {
 
     /**
      * Called when a text input's password flag has changed.
-     * 
+     *
      * @param textInput
      */
     public void passwordChanged(TextInput textInput);
 
     /**
      * Called when a text input's prompt has changed.
-     * 
+     *
      * @param textInput
      * @param previousPrompt
      */
@@ -100,7 +100,7 @@ public interface TextInputListener {
 
     /**
      * Called when the validator changes.
-     * 
+     *
      * @param textInput
      * @param previousValidator
      */
@@ -108,21 +108,21 @@ public interface TextInputListener {
 
     /**
      * Called when a text input's strict validation flag has changed.
-     * 
+     *
      * @param textInput
      */
     public void strictValidationChanged(TextInput textInput);
 
     /**
      * Called when the text changes validity.
-     * 
+     *
      * @param textInput
      */
     public void textValidChanged(TextInput textInput);
 
     /**
      * Called when the editable state has changed.
-     * 
+     *
      * @param textInput
      */
     public void editableChanged(TextInput textInput);

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/TextInputSelectionListener.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/TextInputSelectionListener.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/TextInputSelectionListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/TextInputSelectionListener.java Fri Oct  4 23:57:51 2013
@@ -22,7 +22,7 @@ package org.apache.pivot.wtk;
 public interface TextInputSelectionListener {
     /**
      * Called when a text input's selection state has changed.
-     * 
+     *
      * @param textInput The source of the event.
      * @param previousSelectionStart If the selection changed directly, the
      * previous selection start index. Otherwise, the current selection start

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/TextPane.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/TextPane.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/TextPane.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/TextPane.java Fri Oct  4 23:57:51 2013
@@ -54,7 +54,7 @@ public class TextPane extends Container 
     public interface Skin {
         /**
          * Returns the insertion point for a given location.
-         * 
+         *
          * @param x
          * @param y
          * @return The insertion point for the given location.
@@ -64,7 +64,7 @@ public class TextPane extends Container 
         /**
          * Returns the next insertion point given an x coordinate and a
          * character offset.
-         * 
+         *
          * @param x
          * @param from
          * @param direction
@@ -75,7 +75,7 @@ public class TextPane extends Container 
         /**
          * Returns the row index of the character at a given offset within the
          * document.
-         * 
+         *
          * @param offset
          * @return The row index of the character at the given offset.
          */
@@ -83,7 +83,7 @@ public class TextPane extends Container 
 
         /**
          * Returns the total number of rows in the document.
-         * 
+         *
          * @return The number of rows in the document.
          */
         public int getRowCount();
@@ -91,7 +91,7 @@ public class TextPane extends Container 
         /**
          * Returns the bounds of the character at a given offset within the
          * document.
-         * 
+         *
          * @param offset
          * @return The bounds of the character at the given offset.
          */
@@ -316,7 +316,7 @@ public class TextPane extends Container 
      * Sets the document that backs the text pane. Documents are not shareable
      * across multiple TextPanes; because a Document may contain Components, and
      * a Component may only be in one Container at a time.
-     * 
+     *
      * @param document
      */
     public void setDocument(Document document) {
@@ -509,7 +509,7 @@ public class TextPane extends Container 
 
     /**
      * Returns character count of the document.
-     * 
+     *
      * @return The document's character count, or <tt>0</tt> if the document is
      * <tt>null</tt>.
      */
@@ -700,7 +700,7 @@ public class TextPane extends Container 
     /**
      * Convenience method to get all the text from the current document into a
      * single string.
-     * 
+     *
      * @see #setText
      */
     public String getText() {
@@ -729,7 +729,7 @@ public class TextPane extends Container 
 
     /**
      * Returns the starting index of the selection.
-     * 
+     *
      * @return The starting index of the selection.
      */
     public int getSelectionStart() {
@@ -738,7 +738,7 @@ public class TextPane extends Container 
 
     /**
      * Returns the length of the selection.
-     * 
+     *
      * @return The length of the selection; may be <tt>0</tt>.
      */
     public int getSelectionLength() {
@@ -747,7 +747,7 @@ public class TextPane extends Container 
 
     /**
      * Returns a span representing the current selection.
-     * 
+     *
      * @return A span containing the current selection. Both start and end
      * points are inclusive. Returns <tt>null</tt> if the selection is empty.
      */
@@ -759,7 +759,7 @@ public class TextPane extends Container 
     /**
      * Sets the selection. The sum of the selection start and length must be
      * less than the length of the text input's content.
-     * 
+     *
      * @param selectionStart The starting index of the selection.
      * @param selectionLength The length of the selection.
      */
@@ -795,7 +795,7 @@ public class TextPane extends Container 
 
     /**
      * Sets the selection.
-     * 
+     *
      * @param selection
      * @see #setSelection(int, int)
      */
@@ -827,7 +827,7 @@ public class TextPane extends Container 
 
     /**
      * Returns the currently selected text.
-     * 
+     *
      * @return A new string containing a copy of the text in the selected range,
      * or <tt>null</tt> if nothing is selected.
      */
@@ -859,7 +859,7 @@ public class TextPane extends Container 
 
     /**
      * Sets the text pane's editable flag.
-     * 
+     *
      * @param editable
      */
     public void setEditable(boolean editable) {

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/TextPaneCharacterListener.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/TextPaneCharacterListener.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/TextPaneCharacterListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/TextPaneCharacterListener.java Fri Oct  4 23:57:51 2013
@@ -37,7 +37,7 @@ public interface TextPaneCharacterListen
 
     /**
      * Called when characters have been inserted into a text pane.
-     * 
+     *
      * @param textPane
      * @param index
      * @param count
@@ -46,7 +46,7 @@ public interface TextPaneCharacterListen
 
     /**
      * Called when characters have been removed from a text pane.
-     * 
+     *
      * @param textPane
      * @param index
      * @param count

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/TextPaneListener.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/TextPaneListener.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/TextPaneListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/TextPaneListener.java Fri Oct  4 23:57:51 2013
@@ -39,7 +39,7 @@ public interface TextPaneListener {
 
     /**
      * Called when a text pane's document has changed.
-     * 
+     *
      * @param textPane
      * @param previousDocument
      */
@@ -47,7 +47,7 @@ public interface TextPaneListener {
 
     /**
      * Called when a text pane's editable state has changed.
-     * 
+     *
      * @param textPane
      */
     public void editableChanged(TextPane textPane);

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

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/Theme.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/Theme.java?rev=1529353&r1=1529352&r2=1529353&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/Theme.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/Theme.java Fri Oct  4 23:57:51 2013
@@ -110,7 +110,7 @@ public abstract class Theme {
     /**
      * Returns the skin class responsible for skinning the specified component
      * class.
-     * 
+     *
      * @param componentClass The component class.
      * @return The skin class, or <tt>null</tt> if no skin mapping exists for the
      * component class.
@@ -126,7 +126,7 @@ public abstract class Theme {
     /**
      * Sets the skin class responsible for skinning the specified component
      * class.
-     * 
+     *
      * @param componentClass The component class.
      * @param skinClass The skin class.
      */
@@ -145,7 +145,7 @@ public abstract class Theme {
     /**
      * Gets the current theme, as determined by the {@linkplain #PROVIDER_NAME
      * theme provider}.
-     * 
+     *
      * @throws IllegalStateException If a theme has not been installed.
      */
     public static Theme getTheme() {
@@ -158,7 +158,7 @@ public abstract class Theme {
 
     /**
      * Produce a font by describing it relative to the current theme's font
-     * 
+     *
      * @param dictionary A dictionary with any of the following keys: <ul> <li>
      * {@value #NAME_KEY} - the family name of the font</li> <li>
      * {@value #SIZE_KEY} - the font size as an integer, or a string "x%" for a