Author: tchemit Date: 2008-07-27 10:02:45 +0000 (Sun, 27 Jul 2008) New Revision: 927 Modified: trunk/commandline/commandline-ui-action/src/main/java/org/codelutin/option/ui/actions/CommandLineBaseAction.java Log: use ContextProvider Modified: trunk/commandline/commandline-ui-action/src/main/java/org/codelutin/option/ui/actions/CommandLineBaseAction.java =================================================================== --- trunk/commandline/commandline-ui-action/src/main/java/org/codelutin/option/ui/actions/CommandLineBaseAction.java 2008-07-27 10:02:12 UTC (rev 926) +++ trunk/commandline/commandline-ui-action/src/main/java/org/codelutin/option/ui/actions/CommandLineBaseAction.java 2008-07-27 10:02:45 UTC (rev 927) @@ -38,11 +38,11 @@ } protected String getPrefix() { - return "jaxx"; + return "commandline"; } - protected Context getContext() { - return ContextProvider.getContext(); + protected Context getContext() throws IllegalStateException { + return ContextProvider.get(); } }