User: jung
Date: 00/12/22 07:49:44
Modified: src/org/zoap/xml/meta/builtin ClassType.java
Log:
repackaged thread pooling. Coherent environment. Exception extensions.
Revision Changes Path
1.3 +21 -14 zoap/src/org/zoap/xml/meta/builtin/ClassType.java
Index: ClassType.java
===================================================================
RCS file: /products/cvs/ejboss/zoap/src/org/zoap/xml/meta/builtin/ClassType.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ClassType.java 2000/12/04 12:36:36 1.2
+++ ClassType.java 2000/12/22 15:49:44 1.3
@@ -1,5 +1,5 @@
/*
- * $Id: ClassType.java,v 1.2 2000/12/04 12:36:36 jung Exp $
+ * $Id: ClassType.java,v 1.3 2000/12/22 15:49:44 jung Exp $
* Copyright 2000 (C) infor:business solutions AG, Hauerstrasse 12,
* D-66299 Friedrichsthal, Germany. All Rights Reserved.
*
@@ -48,33 +48,34 @@
import org.zoap.xml.Environment;
import org.zoap.xml.TypeException;
-import de.infor.ce.util.ObjectFactory;
import java.util.Collection;
/**
* ClassType is the glue between an arbitrary Java class and a complex XML type.
- * ClassTypes are referencable to preserve object identity. ClassTypes are tight to
some
- * object factory.
+ * ClassTypes are referencable to preserve object identity. ClassTypes are tight to
some object factory.
*/
public class ClassType extends ComplexType {
- /** empty constructor */
- public ClassType() {
- if(Environment.DEBUG_XML && Environment.DEBUG_XML_META)
- Environment.out.print(toString()+"()\n");
- }
-
- /** class types are referencable */
- public boolean isReferencable() {
- return true;
- }
+ /** empty constructor */
+ public ClassType() {
+ if (Environment.DEBUG_XML && Environment.DEBUG_XML_META)
+ Environment.out.print(toString() + "()\n");
+ }
+
+ /** class types are referencable */
+ public boolean isReferencable() {
+ return true;
+ }
}
/*
* $Log: ClassType.java,v $
+ * Revision 1.3 2000/12/22 15:49:44 jung
+ * repackaged thread pooling. Coherent environment. Exception extensions.
+ *
* Revision 1.2 2000/12/04 12:36:36 jung
* adopted to latest jboss container,
*