Hi Greg,

> GridPane.Filler should still be final.
that's how it is now (before only Filler in TablePane was final), so
they are aligned now.

I hope this little change will be Ok ... if not, tell me.

Bye


>
> On Mar 18, 2011, at 5:32 PM, smart...@apache.org wrote:
>
>> Author: smartini
>> Date: Fri Mar 18 21:32:23 2011
>> New Revision: 1083076
>>
>> URL: http://svn.apache.org/viewvc?rev=1083076&view=rev
>> Log:
>> PIVOT-713
>>
>> Modified:
>>    pivot/trunk/wtk/src/org/apache/pivot/wtk/GridPane.java
>>    pivot/trunk/wtk/src/org/apache/pivot/wtk/TableView.java
>>
>> 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=1083076&r1=1083075&r2=1083076&view=diff
>> ==============================================================================
>> --- pivot/trunk/wtk/src/org/apache/pivot/wtk/GridPane.java (original)
>> +++ pivot/trunk/wtk/src/org/apache/pivot/wtk/GridPane.java Fri Mar 18 
>> 21:32:23 2011
>> @@ -32,7 +32,7 @@ public class GridPane extends Container
>>     /**
>>      * Represents a grid pane row.
>>      */
>> -    public static final class Row implements Sequence<Component>, 
>> Iterable<Component> {
>> +    public static class Row implements Sequence<Component>, 
>> Iterable<Component> {
>>         private ArrayList<Component> cells = new ArrayList<Component>();
>>
>>         private GridPane gridPane = null;
>> @@ -257,7 +257,7 @@ public class GridPane extends Container
>>     /**
>>      * Component that can be used as filler for empty cells.
>>      */
>> -    public static class Filler extends Component {
>> +    public static final class Filler extends Component {
>>         public Filler() {
>>             installSkin(Filler.class);
>>         }
>>
>> 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=1083076&r1=1083075&r2=1083076&view=diff
>> ==============================================================================
>> --- pivot/trunk/wtk/src/org/apache/pivot/wtk/TableView.java (original)
>> +++ pivot/trunk/wtk/src/org/apache/pivot/wtk/TableView.java Fri Mar 18 
>> 21:32:23 2011
>> @@ -49,7 +49,7 @@ public class TableView extends Component
>>     /**
>>      * Contains information about a table column.
>>      */
>> -    public static final class Column {
>> +    public static class Column {
>>         private TableView tableView = null;
>>
>>         private String name = null;
>>
>>
>
>

Reply via email to