Subversion Repository Public Repository

litesoft

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

Diff revisions: vs.
  @@ -1,20 +1,20 @@
1 - // This Source Code is in the Public Domain per: http://unlicense.org
2 - package org.litesoft.aokeyhole.toolkit;
3 -
4 - public class LabeledComponentParams {
5 - private String mLabel;
6 - private boolean mShouldUiIndicateRequired;
7 -
8 - public LabeledComponentParams( String pLabel, boolean pShouldUiIndicateRequired ) {
9 - mLabel = pLabel;
10 - mShouldUiIndicateRequired = pShouldUiIndicateRequired;
11 - }
12 -
13 - public String getLabel() {
14 - return mLabel;
15 - }
16 -
17 - public boolean shouldUiIndicateRequired() {
18 - return mShouldUiIndicateRequired;
19 - }
20 - }
1 + // This Source Code is in the Public Domain per: http://unlicense.org
2 + package org.litesoft.aokeyhole.toolkit;
3 +
4 + public class LabeledComponentParams {
5 + private String mLabel;
6 + private boolean mShouldUiIndicateRequired;
7 +
8 + public LabeledComponentParams( String pLabel, boolean pShouldUiIndicateRequired ) {
9 + mLabel = pLabel;
10 + mShouldUiIndicateRequired = pShouldUiIndicateRequired;
11 + }
12 +
13 + public String getLabel() {
14 + return mLabel;
15 + }
16 +
17 + public boolean shouldUiIndicateRequired() {
18 + return mShouldUiIndicateRequired;
19 + }
20 + }