djencks 2003/11/14 08:10:21
Modified: modules/kernel/src/java/org/apache/geronimo/kernel/service
GeronimoAttributeInfo.java
Log:
More constructors
Revision Changes Path
1.7 +12 -2
incubator-geronimo/modules/kernel/src/java/org/apache/geronimo/kernel/service/GeronimoAttributeInfo.java
Index: GeronimoAttributeInfo.java
===================================================================
RCS file:
/home/cvs/incubator-geronimo/modules/kernel/src/java/org/apache/geronimo/kernel/service/GeronimoAttributeInfo.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- GeronimoAttributeInfo.java 11 Nov 2003 16:00:59 -0000 1.6
+++ GeronimoAttributeInfo.java 14 Nov 2003 16:10:21 -0000 1.7
@@ -194,7 +194,17 @@
this(name, readable, writable, null, null, initialValue);
}
- public GeronimoAttributeInfo(String name, boolean readable, boolean
writable, String description, String targetName) {
+ //might be confusing...
+ public GeronimoAttributeInfo(String name, boolean readable, boolean
writable, String description) {
+ this(name, readable, writable, description, null, null);
+ }
+
+ //might be confusing...
+ public GeronimoAttributeInfo(String name, boolean readable, boolean
writable, String description, Object initialValue) {
+ this(name, readable, writable, description, null, initialValue);
+ }
+
+ public GeronimoAttributeInfo(String name, boolean readable, boolean
writable, String description, String targetName) {
this(name, readable, writable, description, targetName, null);
}