Index: lutincommandline-ui/src/test/org/codelutin/option/ui/UITest.java diff -u lutincommandline-ui/src/test/org/codelutin/option/ui/UITest.java:1.2 lutincommandline-ui/src/test/org/codelutin/option/ui/UITest.java:1.3 --- lutincommandline-ui/src/test/org/codelutin/option/ui/UITest.java:1.2 Sun Mar 16 17:54:29 2008 +++ lutincommandline-ui/src/test/org/codelutin/option/ui/UITest.java Sun Mar 16 21:15:50 2008 @@ -21,6 +21,7 @@ import org.codelutin.i18n.LanguageEnum; import org.codelutin.option.Config; import org.codelutin.option.ConfigPropertyKey; +import org.codelutin.option.OptionKey; import static org.codelutin.option.ConfigPropertyKey.newConfigPropertyKey; import static org.codelutin.option.def.ConfigPropertyModifier.MANDATORY; @@ -64,6 +65,18 @@ loadFromDefaultValue(); clearModified(); } + + protected OptionKey getConfigOptionKey() { + return null; + } + + protected OptionKey getConfigFileOptionKey() { + return null; + } + + protected ConfigPropertyKey getFileNameConfigKey() { + return null; + } } private static class MyConfigLocal extends Config { @@ -83,6 +96,18 @@ loadFromDefaultValue(); clearModified(); } + + protected OptionKey getConfigOptionKey() { + return null; + } + + protected OptionKey getConfigFileOptionKey() { + return null; + } + + protected ConfigPropertyKey getFileNameConfigKey() { + return null; + } } private static class MyConfigRemote extends Config { @@ -101,5 +126,17 @@ loadFromDefaultValue(); clearModified(); } + + protected OptionKey getConfigOptionKey() { + return null; + } + + protected OptionKey getConfigFileOptionKey() { + return null; + } + + protected ConfigPropertyKey getFileNameConfigKey() { + return null; + } } }