Hello,
how can it be specified in the schema, that an entity is moved to another package?
Package Structure (version 1)
com |- btc |- impl |- Class1.java |- internal |- Class2.java |- Class3.java
Now I want to move Class2 from com.btc.internal to com.btc.impl
com |- btc |- impl |- Class1.java |- Class2.java |- internal |- Class3.java
How should that be specified in the schema?
I found in the manual only how a whole packet can be renamed:
<schema> <package name="com.btc.internal" new-name="com.btc.impl" /> </schema>
But Class3 shall not be moved.
Or we can specify it like this:
<schema> <package name="com.btc" new-name="com.btc" > <class name="internal.Class2" new-name="impl.Class2" /> </package> </schema>