vote up 0 vote down star

It looks like the "Externalize Strings" feature takes everything, makes a Messages class, and a .txt file in which to store the Strings themselves. This is interesting, but I've got another way to store constants:

public final class Constants {
    //for parsing commands
    public static final String REGEX_COMMAND = "(\\w*) *= *\"(.*)\""; //Regex for a command from a data file
    //etc
}

Is there any way to get Eclipse to automatically move Strings and other values to here for me?

flag

70% accept rate

2 Answers

vote up 0 vote down check

Select a literal, right click, Refactor -> Extract Constant... proceed with the wizard.

link|flag
yes, but that's only within the class itself, not to another Constants class in the same package. – Rosarch Oct 13 at 4:42
After you've extracted the constant, you can select Refactor → Move. – gustafc Oct 13 at 9:07
ok, now is there a way to do that for every literal in the package, at once? – Rosarch Oct 13 at 16:37
vote up 0 vote down

There is no way to move the strings automatically. If you need to move several String constants by hand, the most convenient way to do that is through drag and drop: select the strings you want, and drag them to your Constants class.

link|flag

Your Answer

Get an OpenID
or

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