Subversion Repository Public Repository

litesoft

Diff Revisions 948 vs 950 for /trunk/Java/KeyHole/src/org/litesoft/aokeyhole/toolkit/NameValuesComponent.java

Diff revisions: vs.
  @@ -1,26 +1,26 @@
1 - // This Source Code is in the Public Domain per: http://unlicense.org
2 - package org.litesoft.aokeyhole.toolkit;
3 -
4 - public interface NameValuesComponent {
5 - public String[] getNames();
6 -
7 - public void clearValues();
8 -
9 - public boolean hasComponentFor( String pName );
10 -
11 - public String getValue( String pName );
12 -
13 - /**
14 - * @return true if found & Set
15 - */
16 - public boolean setValue( String pName, String pValue );
17 -
18 - /**
19 - * This is an Optionally supported method.
20 - *
21 - * @return true if supported (& hence Set)
22 - */
23 - public boolean setOptions( String pName, String[] pOptions );
24 -
25 - public void setEnabled( boolean pEnable );
26 - }
1 + // This Source Code is in the Public Domain per: http://unlicense.org
2 + package org.litesoft.aokeyhole.toolkit;
3 +
4 + public interface NameValuesComponent {
5 + public String[] getNames();
6 +
7 + public void clearValues();
8 +
9 + public boolean hasComponentFor( String pName );
10 +
11 + public String getValue( String pName );
12 +
13 + /**
14 + * @return true if found & Set
15 + */
16 + public boolean setValue( String pName, String pValue );
17 +
18 + /**
19 + * This is an Optionally supported method.
20 + *
21 + * @return true if supported (& hence Set)
22 + */
23 + public boolean setOptions( String pName, String[] pOptions );
24 +
25 + public void setEnabled( boolean pEnable );
26 + }