Author: dkulp
Date: Wed Nov 14 14:07:36 2007
New Revision: 595085
URL: http://svn.apache.org/viewvc?rev=595085&view=rev
Log:
Merged revisions 594252 via svnmerge from
https://svn.apache.org/repos/asf/incubator/cxf/trunk
........
r594252 | dkulp | 2007-11-12 13:31:24 -0500 (Mon, 12 Nov 2007) | 2 lines
Add missing constructors
........
Modified:
incubator/cxf/branches/2.0.x-fixes/ (props changed)
incubator/cxf/branches/2.0.x-fixes/common/common/src/main/java/org/apache/cxf/common/xmlschema/SchemaCollection.java
Propchange: incubator/cxf/branches/2.0.x-fixes/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.
Modified:
incubator/cxf/branches/2.0.x-fixes/common/common/src/main/java/org/apache/cxf/common/xmlschema/SchemaCollection.java
URL:
http://svn.apache.org/viewvc/incubator/cxf/branches/2.0.x-fixes/common/common/src/main/java/org/apache/cxf/common/xmlschema/SchemaCollection.java?rev=595085&r1=595084&r2=595085&view=diff
==============================================================================
---
incubator/cxf/branches/2.0.x-fixes/common/common/src/main/java/org/apache/cxf/common/xmlschema/SchemaCollection.java
(original)
+++
incubator/cxf/branches/2.0.x-fixes/common/common/src/main/java/org/apache/cxf/common/xmlschema/SchemaCollection.java
Wed Nov 14 14:07:36 2007
@@ -47,6 +47,14 @@
public class SchemaCollection {
private XmlSchemaCollection schemaCollection;
+
+ public SchemaCollection() {
+ this(new XmlSchemaCollection());
+ }
+
+ public SchemaCollection(XmlSchemaCollection col) {
+ schemaCollection = col;
+ }
public boolean equals(Object obj) {
return schemaCollection.equals(obj);