This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

xerces-xalan (last installment)


Hi

Oops I forgot 2 diffs. It's _correct_ that three diffs are zero-length
it was because I could circumvent the compilation/linking thing by
fixing OutputBase instead. Note that the diff for OutputBase is a bit
strange (I was in a hurry). I am reviewing the diffs this week, so if a
better solution comes up of it get's fixed in cvs. well... hey!
80c80
< public abstract class Function extends Expression
---
> public abstract class Function extends org.apache.xpath.Expression
311c311,324
< 
---
>     public abstract void startDocument() 
> 	    throws org.apache.xalan.xsltc.TransletException;
>     public abstract void endDocument() 
> 	    throws org.apache.xalan.xsltc.TransletException;
>     public abstract void characters(String s) 
> 	    throws org.apache.xalan.xsltc.TransletException;
>     public abstract void characters(char[] characters, int offset, int length) 
> 	    throws org.apache.xalan.xsltc.TransletException;
>     public void attribute(String attributeName, String attributeValue)
> 		        throws TransletException {}
>     public void comment(String comment) throws TransletException {}
>     public void processingInstruction(String target, String data)
> 	             throws TransletException {}
>     public String expandQName(String withPrefix) { return(withPrefix); }

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]