This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
xerces-xalan (last installment)
- From: Dhek Bhun Kho <bhun at chello dot nl>
- To: java-patches at gcc dot gnu dot org
- Date: 16 Dec 2002 07:30:18 +0100
- Subject: 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); }