Hi Mukul,

I recently did an update from the XML Schema 1.1 branch and noticed that
'?AbstractPsychoPathImpl' is no longer compiling. It seems to be calling a
method (XSDuration.parseDTDuration) that doesn't exist or isn't in the
PsychoPath binary currently checked in. It wasn't obvious to me how to fix
this. Can you take a look?

Thanks.

Michael Glavassevich
XML Parser Development
IBM Toronto Lab
E-mail: [email protected]
E-mail: [email protected]

[email protected] wrote on 12/05/2009 09:41:51 AM:

> Author: mukulg
> Date: Sat Dec  5 14:41:49 2009
> New Revision: 887547
>
> URL: http://svn.apache.org/viewvc?rev=887547&view=rev
> Log:
> improvements to assertion variable, $value implementation
>
> Modified:
>     xerces/java/branches/xml-schema-1.1-dev/src/org/apache/xerces/
> impl/xs/AbstractPsychoPathImpl.java
>     xerces/java/branches/xml-schema-1.1-dev/src/org/apache/xerces/
> impl/xs/XMLAssertPsychopathImpl.java
>
> Modified: xerces/java/branches/xml-schema-1.1-dev/src/org/apache/
> xerces/impl/xs/AbstractPsychoPathImpl.java
> URL: http://svn.apache.org/viewvc/xerces/java/branches/xml-schema-1.
> 1-dev/src/org/apache/xerces/impl/xs/AbstractPsychoPathImpl.java?
> rev=887547&r1=887546&r2=887547&view=diff
>
==============================================================================

> --- xerces/java/branches/xml-schema-1.1-dev/src/org/apache/xerces/
> impl/xs/AbstractPsychoPathImpl.java (original)
> +++ xerces/java/branches/xml-schema-1.1-dev/src/org/apache/xerces/
> impl/xs/AbstractPsychoPathImpl.java Sat Dec  5 14:41:49 2009

<snip/>

> +        // duration and it's subtypes
> +        else if ("duration".equals(xsdTypeName)) {
> +           psychoPathType = XSDuration.parseDTDuration(value);
> +        }
> +        else if ("dayTimeDuration".equals(xsdTypeName)) {
> +           psychoPathType = XSDayTimeDuration.parseDTDuration(value);
> +        }
> +        else if ("yearMonthDuration".equals(xsdTypeName)) {
> +           psychoPathType = XSYearMonthDuration.parseYMDuration(value);
> +        }
> +        // end of, duration types

<snip/>

> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [email protected]
> For additional commands, e-mail: [email protected]

Reply via email to