/* I'm reading the code located in the requestgenerator */
public void generate()
throws SAXException {
Request request = ObjectModelHelper.getRequest(objectModel);
this.contentHandler.startDocument(); ===> this method comes from
AbstractXMLProducer
/******* Add xmlns *******/
/*this.contentHandler.startPrefixMapping("",URI);*/
AttributesImpl attr=new AttributesImpl();
this.attribute(attr,"target", request.getRequestURI()); ===> this
method comes from AbstractServerPage
....
My questions are :
In "this.attribute", "this" reference which object ?
How can a class (requestgenerator) can use object from an abstract class at
the same level ?
Maybe my question are silly, but I like knowing what I'm reading and using.
Lionel
---------------------------------------------------------------------
Please check that your question has not already been answered in the
FAQ before posting. <http://xml.apache.org/cocoon/faq/index.html>
To unsubscribe, e-mail: <[EMAIL PROTECTED]>
For additional commands, e-mail: <[EMAIL PROTECTED]>
- RE: question about cocoon object Lionel Crine
- RE: question about cocoon object Geoff Howard
- RE: question about cocoon object Lionel Crine
- RE: question about cocoon object Lionel Crine