rename package: do not replace dir with corresponding package when package was already processed

move classes from dir: update file refs
This commit is contained in:
anna
2011-07-12 17:43:36 +04:00
parent 49d4914f57
commit 2e8060a53b
15 changed files with 105 additions and 10 deletions
@@ -0,0 +1,9 @@
package pack2;
import pack1.*;
import target.pack1.S1;
public class UsagesFromBoth {
S1 s1;
S2 s2;
}
@@ -0,0 +1,3 @@
package target.pack1;
public class S1{}
@@ -0,0 +1,3 @@
package pack1;
public class S2{}
@@ -0,0 +1,9 @@
package pack2;
import pack1.*;
import target.pack1.S1;
public class UsagesFromBoth2 {
S1 s1;
S2 s2;
}
@@ -0,0 +1,3 @@
<root xmlns:xi="http://www.w3.org/2001/XInclude">
<xi:include href="../../src1/target/pack1/S1.java" xpointer="xpointer(/components/*)"/>
</root>
@@ -0,0 +1,3 @@
package pack1;
public class S1{}
@@ -0,0 +1,8 @@
package pack2;
import pack1.*;
public class UsagesFromBoth {
S1 s1;
S2 s2;
}
@@ -0,0 +1,3 @@
package pack1;
public class S2{}
@@ -0,0 +1,8 @@
package pack2;
import pack1.*;
public class UsagesFromBoth2 {
S1 s1;
S2 s2;
}
@@ -0,0 +1,3 @@
<root xmlns:xi="http://www.w3.org/2001/XInclude">
<xi:include href="../../src1/pack1/S1.java" xpointer="xpointer(/components/*)"/>
</root>