Subversion Repository Public Repository

litesoft

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

Diff revisions: vs.
  @@ -1,30 +1,30 @@
1 - // This Source Code is in the Public Domain per: http://unlicense.org
2 - package org.litesoft.aokeyhole.toolkit;
3 -
4 - public interface NameValueComponent {
5 - public String getName();
6 -
7 - public String getValue();
8 -
9 - public void clearValue();
10 -
11 - public void initializeView();
12 -
13 - public boolean setFocus();
14 -
15 - /**
16 - * @return true if value was acceptable
17 - */
18 - public boolean setValue( String pValue );
19 -
20 - /**
21 - * This is an Optionally supported method.
22 - *
23 - * @return true if supported (& hence Set)
24 - */
25 - public boolean setOptions( String[] pOptions );
26 -
27 - public void setComponentEnabled( boolean pEnable );
28 -
29 - public boolean isComponentEnabled();
30 - }
1 + // This Source Code is in the Public Domain per: http://unlicense.org
2 + package org.litesoft.aokeyhole.toolkit;
3 +
4 + public interface NameValueComponent {
5 + public String getName();
6 +
7 + public String getValue();
8 +
9 + public void clearValue();
10 +
11 + public void initializeView();
12 +
13 + public boolean setFocus();
14 +
15 + /**
16 + * @return true if value was acceptable
17 + */
18 + public boolean setValue( String pValue );
19 +
20 + /**
21 + * This is an Optionally supported method.
22 + *
23 + * @return true if supported (& hence Set)
24 + */
25 + public boolean setOptions( String[] pOptions );
26 +
27 + public void setComponentEnabled( boolean pEnable );
28 +
29 + public boolean isComponentEnabled();
30 + }