]> source.dussan.org Git - vaadin-framework.git/commitdiff
Refactoring for new package convention.
authorJani Laakso <jani.laakso@itmill.com>
Thu, 20 Sep 2007 08:02:06 +0000 (08:02 +0000)
committerJani Laakso <jani.laakso@itmill.com>
Thu, 20 Sep 2007 08:02:06 +0000 (08:02 +0000)
svn changeset:2348/svn branch:trunk

src/com/itmill/toolkit/terminal/gwt/client/ui/ContextMenu.java
src/com/itmill/toolkit/terminal/gwt/client/ui/IScrollTable.java
src/com/itmill/toolkit/terminal/gwt/client/ui/ITree.java
src/com/itmill/toolkit/terminal/gwt/client/ui/TreeAction.java

index e8160e70df87e3a23d2df9a8bb542e2adcdee060..f3f16000461bf731823906dc8ef475512e2edb8b 100644 (file)
@@ -8,7 +8,7 @@ import com.google.gwt.user.client.ui.PopupPanel;
 
 public class ContextMenu extends PopupPanel {
        
-       private IActionOwner actionOwner;
+       private ActionOwner actionOwner;
        
        private CMenuBar menu = new CMenuBar();
        
@@ -29,7 +29,7 @@ public class ContextMenu extends PopupPanel {
         * Sets the element from which to build menu
         * @param ao
         */
-       public void setActionOwner(IActionOwner ao) {
+       public void setActionOwner(ActionOwner ao) {
                this.actionOwner = ao;
        }
        
@@ -56,7 +56,7 @@ public class ContextMenu extends PopupPanel {
                }
        }
 
-       public void showAt(IActionOwner ao, int left, int top) {
+       public void showAt(ActionOwner ao, int left, int top) {
                setActionOwner(ao);
                showAt(left, top);
        }
index a3bd26cce347ae87bd606b7dbf754575583950b9..3729cbfa4d3ffb605b0f8f2da41e7415d7883837 100644 (file)
@@ -1059,7 +1059,7 @@ public class IScrollTable extends Composite implements ITable, ScrollListener {
                }
        }
 
-       public class TableHead extends Panel implements IActionOwner {
+       public class TableHead extends Panel implements ActionOwner {
 
                private static final int WRAPPER_WIDTH = 9000;
 
@@ -1678,7 +1678,7 @@ public class IScrollTable extends Composite implements ITable, ScrollListener {
 
                }
 
-               public class IScrollTableRow extends Panel implements IActionOwner {
+               public class IScrollTableRow extends Panel implements ActionOwner {
 
                        Vector childWidgets = new Vector();
                        private boolean selected = false;
index e6334c3fe5048370057c83931e48254f4e216dcb..04b220e69d9c7e57fc99e73b5de573576750090a 100644 (file)
@@ -156,7 +156,7 @@ public class ITree extends Tree implements Paintable {
                
        }
 
-       private class TreeNode extends TreeItem implements IActionOwner {
+       private class TreeNode extends TreeItem implements ActionOwner {
                
                String key;
                
index f2e283da3d8fb6f6dc7218b87bed7376c16dd83a..1d630893a2442ddc0e69b84647ddab4bbee4bfc6 100644 (file)
@@ -9,11 +9,11 @@ public class TreeAction extends Action {
        String targetKey = "";
        String actionKey = "";
        
-       public TreeAction(IActionOwner owner) {
+       public TreeAction(ActionOwner owner) {
                super(owner);
        }
        
-       public TreeAction(IActionOwner owner, String target, String action) {
+       public TreeAction(ActionOwner owner, String target, String action) {
                this(owner);
                this.targetKey = target;
                this.actionKey = action;