Author: dkulp
Date: Tue Jan 21 16:59:22 2014
New Revision: 1560096
URL: http://svn.apache.org/r1560096
Log:
Fix imports
Modified:
webservices/xmlschema/trunk/xmlschema-core/src/main/java/org/apache/ws/commons/schema/XmlSchemaElement.java
webservices/xmlschema/trunk/xmlschema-core/src/test/java/tests/xmlschema30/NamedItemsEqualityTest.java
Modified:
webservices/xmlschema/trunk/xmlschema-core/src/main/java/org/apache/ws/commons/schema/XmlSchemaElement.java
URL:
http://svn.apache.org/viewvc/webservices/xmlschema/trunk/xmlschema-core/src/main/java/org/apache/ws/commons/schema/XmlSchemaElement.java?rev=1560096&r1=1560095&r2=1560096&view=diff
==============================================================================
---
webservices/xmlschema/trunk/xmlschema-core/src/main/java/org/apache/ws/commons/schema/XmlSchemaElement.java
(original)
+++
webservices/xmlschema/trunk/xmlschema-core/src/main/java/org/apache/ws/commons/schema/XmlSchemaElement.java
Tue Jan 21 16:59:22 2014
@@ -26,7 +26,12 @@ import java.util.List;
import javax.xml.namespace.QName;
-import org.apache.ws.commons.schema.utils.*;
+import org.apache.ws.commons.schema.utils.CollectionFactory;
+import org.apache.ws.commons.schema.utils.UtilObjects;
+import org.apache.ws.commons.schema.utils.XmlSchemaNamedWithForm;
+import org.apache.ws.commons.schema.utils.XmlSchemaNamedWithFormImpl;
+import org.apache.ws.commons.schema.utils.XmlSchemaRef;
+import org.apache.ws.commons.schema.utils.XmlSchemaRefBase;
/**
* Class for elements, representing xs:element.
Modified:
webservices/xmlschema/trunk/xmlschema-core/src/test/java/tests/xmlschema30/NamedItemsEqualityTest.java
URL:
http://svn.apache.org/viewvc/webservices/xmlschema/trunk/xmlschema-core/src/test/java/tests/xmlschema30/NamedItemsEqualityTest.java?rev=1560096&r1=1560095&r2=1560096&view=diff
==============================================================================
---
webservices/xmlschema/trunk/xmlschema-core/src/test/java/tests/xmlschema30/NamedItemsEqualityTest.java
(original)
+++
webservices/xmlschema/trunk/xmlschema-core/src/test/java/tests/xmlschema30/NamedItemsEqualityTest.java
Tue Jan 21 16:59:22 2014
@@ -20,15 +20,22 @@
package tests.xmlschema30;
import com.google.common.testing.EqualsTester;
-import org.apache.ws.commons.schema.*;
+
+import org.apache.ws.commons.schema.XmlSchema;
+import org.apache.ws.commons.schema.XmlSchemaCollection;
+import org.apache.ws.commons.schema.XmlSchemaElement;
+import org.apache.ws.commons.schema.XmlSchemaGroup;
+import org.apache.ws.commons.schema.XmlSchemaType;
import org.apache.ws.commons.schema.constants.Constants;
-import org.apache.ws.commons.schema.utils.XmlSchemaNamedImpl;
+
import org.junit.BeforeClass;
import org.junit.Test;
+
import tests.Resources;
import javax.xml.namespace.QName;
import javax.xml.transform.stream.StreamSource;
+
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.InputStream;