djencks 2003/11/14 08:17:33
Modified: modules/kernel/src/java/org/apache/geronimo/kernel/service
GeronimoParameterInfo.java
Log:
more constructors
Revision Changes Path
1.3 +9 -2
incubator-geronimo/modules/kernel/src/java/org/apache/geronimo/kernel/service/GeronimoParameterInfo.java
Index: GeronimoParameterInfo.java
===================================================================
RCS file:
/home/cvs/incubator-geronimo/modules/kernel/src/java/org/apache/geronimo/kernel/service/GeronimoParameterInfo.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- GeronimoParameterInfo.java 24 Oct 2003 22:45:01 -0000 1.2
+++ GeronimoParameterInfo.java 14 Nov 2003 16:17:33 -0000 1.3
@@ -75,9 +75,16 @@
private final Class typeClass;
public GeronimoParameterInfo() {
- super("Ignore", "Ignore", null);
+ this(null, null, null);
+ }
+
+ public GeronimoParameterInfo(String name, String type, String
description) {
+ super(null, null, null);
immutable = false;
typeClass = null;
+ this.name = name;
+ this.type = type;
+ this.description = description;
}
GeronimoParameterInfo(GeronimoParameterInfo source,
GeronimoOperationInfo parent) {