summaryrefslogtreecommitdiffstats
path: root/pki/base/silent/src/com/netscape/pkisilent/argparser/CharHolder.java
diff options
context:
space:
mode:
Diffstat (limited to 'pki/base/silent/src/com/netscape/pkisilent/argparser/CharHolder.java')
-rw-r--r--pki/base/silent/src/com/netscape/pkisilent/argparser/CharHolder.java52
1 files changed, 29 insertions, 23 deletions
diff --git a/pki/base/silent/src/com/netscape/pkisilent/argparser/CharHolder.java b/pki/base/silent/src/com/netscape/pkisilent/argparser/CharHolder.java
index eed578922..b30259b4f 100644
--- a/pki/base/silent/src/com/netscape/pkisilent/argparser/CharHolder.java
+++ b/pki/base/silent/src/com/netscape/pkisilent/argparser/CharHolder.java
@@ -1,5 +1,4 @@
package com.netscape.pkisilent.argparser;
-
// --- BEGIN COPYRIGHT BLOCK ---
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
@@ -19,32 +18,39 @@ package com.netscape.pkisilent.argparser;
// --- END COPYRIGHT BLOCK ---
/**
- * Wrapper class which ``holds'' a character value, enabling methods to return
- * character values through arguments.
- */
-public class CharHolder implements java.io.Serializable {
- /**
+ * Wrapper class which ``holds'' a character value,
+ * enabling methods to return character values through
+ * arguments.
+ */
+public class CharHolder implements java.io.Serializable
+{
+ /**
*
*/
private static final long serialVersionUID = 7340010668929015745L;
/**
- * Value of the character, set and examined by the application as needed.
- */
- public char value;
+ * Value of the character, set and examined
+ * by the application as needed.
+ */
+ public char value;
- /**
- * Constructs a new <code>CharHolder</code> with an initial value of 0.
- */
- public CharHolder() {
- value = 0;
- }
+ /**
+ * Constructs a new <code>CharHolder</code> with an initial
+ * value of 0.
+ */
+ public CharHolder ()
+ { value = 0;
+ }
- /**
- * Constructs a new <code>CharHolder</code> with a specific initial value.
- *
- * @param c Initial character value.
- */
- public CharHolder(char c) {
- value = c;
- }
+ /**
+ * Constructs a new <code>CharHolder</code> with a
+ * specific initial value.
+ *
+ * @param c Initial character value.
+ */
+ public CharHolder (char c)
+ { value = c;
+ }
}
+
+