You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ws.apache.org by Andreas Veithen <an...@gmail.com> on 2010/11/01 20:35:29 UTC

Re: svn commit: r1021555 - in /webservices/commons/trunk/modules/XmlSchema/src: main/java/org/apache/ws/commons/schema/ main/java/org/apache/ws/commons/schema/resolver/ test/java/tests/

> --- webservices/commons/trunk/modules/XmlSchema/src/main/java/org/apache/ws/commons/schema/XmlSchemaSequenceMember.java (original)
> +++ webservices/commons/trunk/modules/XmlSchema/src/main/java/org/apache/ws/commons/schema/XmlSchemaSequenceMember.java Tue Oct 12 00:49:04 2010
> @@ -19,9 +19,11 @@
>
>  package org.apache.ws.commons.schema;
>
> +import org.apache.ws.commons.schema.utils.XmlSchemaObjectBase;
> +
>  /**
>  * Common type for all items that can occur in a sequence.
>  */
> -public interface XmlSchemaSequenceMember {
> +public interface XmlSchemaSequenceMember extends XmlSchemaObjectBase {
>
>  }

Benson,

An interface of the public API that extends an interface from a
"utils" package? I don't know XmlSchema very well, but that looks
suspicious, don't you think?

Andreas