I used the EMF ANT-Task XSD2Java to generate Java code from an existing XSD. Unfortunately the ANT-Task works not as correct as the manual tool and generates a package like 'org.example.interface.something'. Thus the key-word 'interface' is not allowd as a package name I want to refactor it to make the code run. (btw doing it via the UI the package name is 'org.example.interface_.something') My question is: How to refactor the package name including dependencies in the source files? Can I use JDT and if, how? Thanks for any hints.
Kai

link|improve this question

0% accept rate
1  
Search and replace? If there's a similar pattern, that would probably be the easiest. – tjameson May 31 '11 at 7:17
feedback

2 Answers

Right-click the package name in the package explorer. Then from the menu click Refactor -> Rename.

enter image description here

link|improve this answer
Actually I need to do it from source code, not manually, because it should be executed by a nightly build. An ANT-Task for this job would be nice, too, but is not neccessary. – Kai B. Heinz May 31 '11 at 7:43
feedback

As tjameson suggested,

find -name *.java | 
xargs sed -i s/org.example.interface.something/org.example.interface_.something/g

will work?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.