Subversion Repository Public Repository

litesoft

Diff Revisions 473 vs 474 for /trunk/Java/core/Anywhere/src/org/litesoft/configuration/ConfigDataAccessor.java

Diff revisions: vs.
  @@ -1,7 +1,7 @@
1 1 // This Source Code is in the Public Domain per: http://litesoft.org/License.txt
2 2 package org.litesoft.configuration;
3 3
4 - public interface ConfigDataAccessor
4 + public interface ConfigDataAccessor extends ConfigDataAccessorFactory
5 5 {
6 6 public enum Level
7 7 {
  @@ -48,4 +48,12 @@
48 48 */
49 49 public void setKeyValue( Level pLevel, String pKey, String pValue )
50 50 throws UnsupportedOperationException;
51 +
52 + /**
53 + * Override (set at the Run Level) all values who's key starts with the pKeyPrefix
54 + *
55 + * @param pKeyPrefix !null & !empty
56 + * @param pValue !null
57 + */
58 + public void overrideAllStartingWith(String pKeyPrefix, String pValue);
51 59 }