move package as directory: move non-java files as well; fix imports on classes in moved file(s)

This commit is contained in:
anna
2010-03-02 16:14:18 +03:00
parent ad5e522c8c
commit 4e6d36ea3f
27 changed files with 181 additions and 36 deletions

View File

@@ -0,0 +1,9 @@
package pack2;
import pack1.*;
import target.pack1.S1;
public class UsagesFromBoth {
S1 s1;
S2 s2;
}

View File

@@ -0,0 +1,3 @@
package target.pack1;
public class S1{}

View File

@@ -0,0 +1,3 @@
package pack1;
public class S2{}

View File

@@ -0,0 +1,9 @@
package pack2;
import pack1.*;
import target.pack1.S1;
public class UsagesFromBoth2 {
S1 s1;
S2 s2;
}

View File

@@ -0,0 +1,3 @@
package pack1;
public class S1{}

View File

@@ -0,0 +1,8 @@
package pack2;
import pack1.*;
public class UsagesFromBoth {
S1 s1;
S2 s2;
}

View File

@@ -0,0 +1,3 @@
package pack1;
public class S2{}

View File

@@ -0,0 +1,8 @@
package pack2;
import pack1.*;
public class UsagesFromBoth2 {
S1 s1;
S2 s2;
}