summaryrefslogtreecommitdiffstats
path: root/pki/base/silent/src/com/netscape/pkisilent/argparser/ObjectHolder.java
diff options
context:
space:
mode:
Diffstat (limited to 'pki/base/silent/src/com/netscape/pkisilent/argparser/ObjectHolder.java')
-rw-r--r--pki/base/silent/src/com/netscape/pkisilent/argparser/ObjectHolder.java52
1 files changed, 25 insertions, 27 deletions
diff --git a/pki/base/silent/src/com/netscape/pkisilent/argparser/ObjectHolder.java b/pki/base/silent/src/com/netscape/pkisilent/argparser/ObjectHolder.java
index cc8361d9..edb835ee 100644
--- a/pki/base/silent/src/com/netscape/pkisilent/argparser/ObjectHolder.java
+++ b/pki/base/silent/src/com/netscape/pkisilent/argparser/ObjectHolder.java
@@ -1,4 +1,5 @@
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
@@ -18,37 +19,34 @@ package com.netscape.pkisilent.argparser;
// --- END COPYRIGHT BLOCK ---
/**
- * Wrapper class which ``holds'' an Object reference,
- * enabling methods to return Object references through
- * arguments.
- */
-public class ObjectHolder implements java.io.Serializable
-{
- /**
+ * Wrapper class which ``holds'' an Object reference, enabling methods to return
+ * Object references through arguments.
+ */
+public class ObjectHolder implements java.io.Serializable {
+ /**
*
*/
private static final long serialVersionUID = 1825881254530066307L;
/**
- * Value of the Object reference, set and examined
- * by the application as needed.
- */
- public Object value;
+ * Value of the Object reference, set and examined by the application as
+ * needed.
+ */
+ public Object value;
- /**
- * Constructs a new <code>ObjectHolder</code> with an initial
- * value of <code>null</code>.
- */
- public ObjectHolder ()
- { value = null;
- }
+ /**
+ * Constructs a new <code>ObjectHolder</code> with an initial value of
+ * <code>null</code>.
+ */
+ public ObjectHolder() {
+ value = null;
+ }
- /**
- * Constructs a new <code>ObjectHolder</code> with a
- * specific initial value.
- *
- * @param o Initial Object reference.
- */
- public ObjectHolder (Object o)
- { value = o;
- }
+ /**
+ * Constructs a new <code>ObjectHolder</code> with a specific initial value.
+ *
+ * @param o Initial Object reference.
+ */
+ public ObjectHolder(Object o) {
+ value = o;
+ }
}