Return-Path: Delivered-To: apmail-ws-general-archive@www.apache.org Received: (qmail 39370 invoked from network); 3 Aug 2005 23:18:02 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 3 Aug 2005 23:18:02 -0000 Received: (qmail 11994 invoked by uid 500); 3 Aug 2005 23:06:26 -0000 Delivered-To: apmail-ws-general-archive@ws.apache.org Received: (qmail 9375 invoked by uid 500); 3 Aug 2005 23:06:10 -0000 Mailing-List: contact general-help@ws.apache.org; run by ezmlm Precedence: bulk Reply-To: general@ws.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list general@ws.apache.org Received: (qmail 9060 invoked by uid 99); 3 Aug 2005 23:06:08 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Wed, 03 Aug 2005 16:05:56 -0700 Received: (qmail 33013 invoked by uid 65534); 3 Aug 2005 23:05:54 -0000 Message-ID: <20050803230554.33011.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r227274 [4/4] - in /webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd: enum/ str/ xml/ xml/schema/ Date: Wed, 03 Aug 2005 23:05:37 -0000 To: general@ws.apache.org From: gdaniels@apache.org X-Mailer: svnmailer-1.0.3 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Modified: webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaSimpleContent.java URL: http://svn.apache.org/viewcvs/webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaSimpleContent.java?rev=227274&r1=227273&r2=227274&view=diff ============================================================================== --- webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaSimpleContent.java (original) +++ webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaSimpleContent.java Wed Aug 3 16:05:02 2005 @@ -62,17 +62,19 @@ package org.apache.axis.xsd.xml.schema; /** - * Class for simple types and complex types with a simple content model. - * Represents the World Wide Web Consortium (W3C) simpleContent element. + * Class for simple types and complex types with a simple content model. + * Represents the World Wide Web Consortium (W3C) simpleContent element. * - * @author mukund + * @author mukund */ // Vidyanand - 16th Oct - initial implementation public class XmlSchemaSimpleContent extends XmlSchemaContentModel { - /** Creates new XmlSchemaSimpleContent */ + /** + * Creates new XmlSchemaSimpleContent + */ public XmlSchemaSimpleContent() { } Modified: webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaSimpleContentExtension.java URL: http://svn.apache.org/viewcvs/webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaSimpleContentExtension.java?rev=227274&r1=227273&r2=227274&view=diff ============================================================================== --- webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaSimpleContentExtension.java (original) +++ webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaSimpleContentExtension.java Wed Aug 3 16:05:02 2005 @@ -61,21 +61,24 @@ package org.apache.axis.xsd.xml.schema; -import org.apache.axis.xsd.xml.QualifiedName; +import javax.xml.namespace.QName; + /** * Class for simple types that are derived by extension. Extends the simple * type content of the element by adding attributes. Represents the World Wide * Web Consortium (W3C) extension element for simple content. * - * @author mukund + * @author mukund */ // Vidyanand - 16th Oct - initial implementation public class XmlSchemaSimpleContentExtension extends XmlSchemaContent { - /** Creates new XmlSchemaSimpleContentExtension */ + /** + * Creates new XmlSchemaSimpleContentExtension + */ public XmlSchemaSimpleContentExtension() { attributes = new XmlSchemaObjectCollection(); @@ -100,13 +103,13 @@ } /* Name of the built-in data type, simple type, or complex type.*/ - QualifiedName baseTypeName; + QName baseTypeName; - public void setBaseTypeName(QualifiedName baseTypeName) { + public void setBaseTypeName(QName baseTypeName) { this.baseTypeName = baseTypeName; } - public QualifiedName getBaseTypeName() { + public QName getBaseTypeName() { return this.baseTypeName; } Modified: webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaSimpleContentRestriction.java URL: http://svn.apache.org/viewcvs/webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaSimpleContentRestriction.java?rev=227274&r1=227273&r2=227274&view=diff ============================================================================== --- webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaSimpleContentRestriction.java (original) +++ webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaSimpleContentRestriction.java Wed Aug 3 16:05:02 2005 @@ -61,21 +61,24 @@ package org.apache.axis.xsd.xml.schema; -import org.apache.axis.xsd.xml.QualifiedName; +import javax.xml.namespace.QName; + /** * Class for simple types that are derived by restriction. Restricts the - * range of values for the element to a subset of the inherited simple types. - * Represents the World Wide Web Consortium (W3C) restriction element for simple content. + * range of values for the element to a subset of the inherited simple types. + * Represents the World Wide Web Consortium (W3C) restriction element for simple content. * - * @author mukund + * @author mukund */ // Vidyanand - 16th Oct - initial implementation public class XmlSchemaSimpleContentRestriction extends XmlSchemaContent { - /** Creates new XmlSchemaSimpleContentRestriction */ + /** + * Creates new XmlSchemaSimpleContentRestriction + */ public XmlSchemaSimpleContentRestriction() { facets = new XmlSchemaObjectCollection(); attributes = new XmlSchemaObjectCollection(); @@ -111,13 +114,13 @@ } /* Name of the built-in data type, simple type, or complex type.*/ - QualifiedName baseTypeName; + QName baseTypeName; - public void setBaseTypeName(QualifiedName baseTypeName) { + public void setBaseTypeName(QName baseTypeName) { this.baseTypeName = baseTypeName; } - public QualifiedName getBaseTypeName() { + public QName getBaseTypeName() { return this.baseTypeName; } Modified: webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaSimpleType.java URL: http://svn.apache.org/viewcvs/webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaSimpleType.java?rev=227274&r1=227273&r2=227274&view=diff ============================================================================== --- webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaSimpleType.java (original) +++ webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaSimpleType.java Wed Aug 3 16:05:02 2005 @@ -66,7 +66,7 @@ * constraints for the values of attributes or elements with text-only * content. Represents the World Wide Web Consortium (W3C) simpleType element. * - * @author mukund + * @author mukund */ // Oct 15th - momo - initial impl @@ -75,7 +75,9 @@ XmlSchemaSimpleTypeContent content; - /** Creates new XmlSchemaSimpleType */ + /** + * Creates new XmlSchemaSimpleType + */ public XmlSchemaSimpleType() { } Modified: webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaSimpleTypeContent.java URL: http://svn.apache.org/viewcvs/webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaSimpleTypeContent.java?rev=227274&r1=227273&r2=227274&view=diff ============================================================================== --- webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaSimpleTypeContent.java (original) +++ webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaSimpleTypeContent.java Wed Aug 3 16:05:02 2005 @@ -64,12 +64,14 @@ /** * Abstract class for simple type content classes. * - * @author mukund + * @author mukund */ public abstract class XmlSchemaSimpleTypeContent extends XmlSchemaAnnotated { - /** Creates new XmlSchemaSimpleTypeContent */ + /** + * Creates new XmlSchemaSimpleTypeContent + */ protected XmlSchemaSimpleTypeContent() { } Modified: webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaSimpleTypeList.java URL: http://svn.apache.org/viewcvs/webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaSimpleTypeList.java?rev=227274&r1=227273&r2=227274&view=diff ============================================================================== --- webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaSimpleTypeList.java (original) +++ webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaSimpleTypeList.java Wed Aug 3 16:05:02 2005 @@ -61,18 +61,21 @@ package org.apache.axis.xsd.xml.schema; -import org.apache.axis.xsd.xml.QualifiedName; +import javax.xml.namespace.QName; + /** * Class for the list of simpleType elements. Defines a simpleType element * as a list of values of a specified data type. Represents the World Wide * Web Consortium (W3C) list element. * - * @author mukund + * @author mukund */ public class XmlSchemaSimpleTypeList extends XmlSchemaSimpleTypeContent { - /** Creates new XmlSchemaSimpleTypeList */ + /** + * Creates new XmlSchemaSimpleTypeList + */ public XmlSchemaSimpleTypeList() { } @@ -86,13 +89,13 @@ this.itemType = itemType; } - QualifiedName itemTypeName; + QName itemTypeName; - public QualifiedName getItemTypeName() { + public QName getItemTypeName() { return this.itemTypeName; } - public void setItemTypeName(QualifiedName itemTypeName) { + public void setItemTypeName(QName itemTypeName) { this.itemTypeName = itemTypeName; } Modified: webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaSimpleTypeRestriction.java URL: http://svn.apache.org/viewcvs/webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaSimpleTypeRestriction.java?rev=227274&r1=227273&r2=227274&view=diff ============================================================================== --- webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaSimpleTypeRestriction.java (original) +++ webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaSimpleTypeRestriction.java Wed Aug 3 16:05:02 2005 @@ -61,18 +61,21 @@ package org.apache.axis.xsd.xml.schema; -import org.apache.axis.xsd.xml.QualifiedName; +import javax.xml.namespace.QName; + /** * Class for the restriction of simpleType elements. Represents the World * Wide Web Consortium (W3C) restriction element for simple types. * - * @author mukund + * @author mukund */ public class XmlSchemaSimpleTypeRestriction extends XmlSchemaSimpleTypeContent { - /** Creates new XmlSchemaSimpleTypeRestriction */ + /** + * Creates new XmlSchemaSimpleTypeRestriction + */ public XmlSchemaSimpleTypeRestriction() { facets = new XmlSchemaObjectCollection(); } @@ -87,13 +90,13 @@ this.baseType = baseType; } - QualifiedName baseTypeName; + QName baseTypeName; - public QualifiedName getBaseTypeName() { + public QName getBaseTypeName() { return this.baseTypeName; } - public void setBaseTypeName(QualifiedName baseTypeName) { + public void setBaseTypeName(QName baseTypeName) { this.baseTypeName = baseTypeName; } Modified: webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaSimpleTypeUnion.java URL: http://svn.apache.org/viewcvs/webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaSimpleTypeUnion.java?rev=227274&r1=227273&r2=227274&view=diff ============================================================================== --- webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaSimpleTypeUnion.java (original) +++ webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaSimpleTypeUnion.java Wed Aug 3 16:05:02 2005 @@ -61,21 +61,22 @@ package org.apache.axis.xsd.xml.schema; -import org.apache.axis.xsd.xml.QualifiedName; +import javax.xml.namespace.QName; + /** * Class for the union of simpleType elements. Defines a simpleType element - * as a list of values of a specified data type. Represents the World + * as a list of values of a specified data type. Represents the World * Wide Web Consortium (W3C) union element. * - * @author mukund + * @author mukund */ public class XmlSchemaSimpleTypeUnion extends XmlSchemaSimpleTypeContent { XmlSchemaObjectCollection baseTypes; String memberTypesSource; - QualifiedName[] memberTypesQNames; + QName[] memberTypesQNames; public XmlSchemaSimpleTypeUnion() { baseTypes = new XmlSchemaObjectCollection(); @@ -93,7 +94,7 @@ return this.memberTypesSource; } - public QualifiedName[] getMemberTypesQNames() { + public QName[] getMemberTypesQNames() { return this.memberTypesQNames; } Modified: webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaTotalDigitsFacet.java URL: http://svn.apache.org/viewcvs/webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaTotalDigitsFacet.java?rev=227274&r1=227273&r2=227274&view=diff ============================================================================== --- webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaTotalDigitsFacet.java (original) +++ webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaTotalDigitsFacet.java Wed Aug 3 16:05:02 2005 @@ -65,14 +65,16 @@ * Class for defining totalDigits facets. Represents the World Wide * Web Consortium (W3C) totalDigits facet. * - * @author mukund + * @author mukund */ // Vidyanand - 16th Oct - initial implementation public class XmlSchemaTotalDigitsFacet extends XmlSchemaNumericFacet { - /** Creates new XmlSchemaTotalDigitsFacet */ + /** + * Creates new XmlSchemaTotalDigitsFacet + */ public XmlSchemaTotalDigitsFacet() { } Modified: webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaType.java URL: http://svn.apache.org/viewcvs/webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaType.java?rev=227274&r1=227273&r2=227274&view=diff ============================================================================== --- webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaType.java (original) +++ webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaType.java Wed Aug 3 16:05:02 2005 @@ -61,12 +61,13 @@ package org.apache.axis.xsd.xml.schema; -import org.apache.axis.xsd.xml.QualifiedName; +import javax.xml.namespace.QName; + /** * The base class for all simple types and complex types. * - * @author mukund + * @author mukund */ // Oct 15th - momo - initial impl @@ -80,9 +81,11 @@ // name of the type String name; - QualifiedName qualifiedName; + QName qualifiedName; - /** Creates new XmlSchemaType */ + /** + * Creates new XmlSchemaType + */ public XmlSchemaType() { finalDerivation = new XmlSchemaDerivationMethod("None"); } @@ -127,11 +130,11 @@ this.name = name; } - public QualifiedName getQualifiedName() { + public QName getQName() { return qualifiedName; } - public void setQualifiedName(QualifiedName qName) { + public void setQName(QName qName) { this.qualifiedName = qName; } } Modified: webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaUnique.java URL: http://svn.apache.org/viewcvs/webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaUnique.java?rev=227274&r1=227273&r2=227274&view=diff ============================================================================== --- webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaUnique.java (original) +++ webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaUnique.java Wed Aug 3 16:05:02 2005 @@ -62,15 +62,17 @@ package org.apache.axis.xsd.xml.schema; /** - * Identifies a unique constraint among a set of elements. Represents + * Identifies a unique constraint among a set of elements. Represents * the World Wide Web Consortium (W3C) unique element. * - * @author mukund + * @author mukund */ public class XmlSchemaUnique extends XmlSchemaIdentityConstraint { - /** Creates new XmlSchemaUnique */ + /** + * Creates new XmlSchemaUnique + */ public XmlSchemaUnique() { } } Modified: webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaUse.java URL: http://svn.apache.org/viewcvs/webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaUse.java?rev=227274&r1=227273&r2=227274&view=diff ============================================================================== --- webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaUse.java (original) +++ webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaUse.java Wed Aug 3 16:05:02 2005 @@ -64,16 +64,18 @@ import org.apache.axis.xsd.enum.Enum; /** - * Indicator of how the attribute is used. + * Indicator of how the attribute is used. * - * @author mukund + * @author mukund */ public class XmlSchemaUse extends Enum { static String[] members = new String[]{"None", "Optional", "Prohibited", "Required"}; - /** Creates new XmlSchemaUse */ + /** + * Creates new XmlSchemaUse + */ public XmlSchemaUse() { super(); } Modified: webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaWhiteSpaceFacet.java URL: http://svn.apache.org/viewcvs/webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaWhiteSpaceFacet.java?rev=227274&r1=227273&r2=227274&view=diff ============================================================================== --- webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaWhiteSpaceFacet.java (original) +++ webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaWhiteSpaceFacet.java Wed Aug 3 16:05:02 2005 @@ -65,14 +65,16 @@ * Class for defining whiteSpace facets. Represents the World Wide * Web Consortium (W3C) whiteSpace facet. * - * @author mukund + * @author mukund */ // Vidyanand - 16th Oct - initial implementation public class XmlSchemaWhiteSpaceFacet extends XmlSchemaFacet { - /** Creates new XmlSchemaWhiteSpaceFacet */ + /** + * Creates new XmlSchemaWhiteSpaceFacet + */ public XmlSchemaWhiteSpaceFacet() { } Modified: webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaXPath.java URL: http://svn.apache.org/viewcvs/webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaXPath.java?rev=227274&r1=227273&r2=227274&view=diff ============================================================================== --- webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaXPath.java (original) +++ webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSchemaXPath.java Wed Aug 3 16:05:02 2005 @@ -63,16 +63,18 @@ /** * Class for XML Path Language (XPath) expressions. Represents the - * World Wide Web Consortium (W3C) selector element. The World Wide - * Web Consortium (W3C) field element is a collection of + * World Wide Web Consortium (W3C) selector element. The World Wide + * Web Consortium (W3C) field element is a collection of * XmlSchemaXPath classes. * - * @author mukund + * @author mukund */ public class XmlSchemaXPath extends XmlSchemaAnnotated { - /** Creates new XmlSchemaXPath */ + /** + * Creates new XmlSchemaXPath + */ public XmlSchemaXPath() { } Modified: webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSeverityType.java URL: http://svn.apache.org/viewcvs/webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSeverityType.java?rev=227274&r1=227273&r2=227274&view=diff ============================================================================== --- webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSeverityType.java (original) +++ webservices/commons/trunk/XmlSchema/src/org/apache/axis/xsd/xml/schema/XmlSeverityType.java Wed Aug 3 16:05:02 2005 @@ -66,14 +66,16 @@ /** * Represents the severity of the validation event. * - * @author mukund + * @author mukund */ public class XmlSeverityType extends Enum { static String[] members = new String[]{"Error", "Warning"}; - /** Creates new XmlSeverityType */ + /** + * Creates new XmlSeverityType + */ public XmlSeverityType() { super(); }