giacomo 01/04/02 13:18:50
Modified: src/org/apache/cocoon/transformation Tag: xml-cocoon2
XIncludeTransformer.java
src/org/apache/cocoon/components/language/markup Tag:
xml-cocoon2 AbstractMarkupLanguage.java
Log:
Added qualification to make jikes compile happyly
Revision Changes Path
No revision
No revision
1.1.2.24 +4 -4
xml-cocoon/src/org/apache/cocoon/transformation/Attic/XIncludeTransformer.java
Index: XIncludeTransformer.java
===================================================================
RCS file:
/home/cvs/xml-cocoon/src/org/apache/cocoon/transformation/Attic/XIncludeTransformer.java,v
retrieving revision 1.1.2.23
retrieving revision 1.1.2.24
diff -u -r1.1.2.23 -r1.1.2.24
--- XIncludeTransformer.java 2001/03/19 21:20:48 1.1.2.23
+++ XIncludeTransformer.java 2001/04/02 20:18:38 1.1.2.24
@@ -51,7 +51,7 @@
* by the SAX event FSM yet.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Donald Ball</a>
- * @version CVS $Revision: 1.1.2.23 $ $Date: 2001/03/19 21:20:48 $ $Author:
bloritsch $
+ * @version CVS $Revision: 1.1.2.24 $ $Date: 2001/04/02 20:18:38 $ $Author:
giacomo $
*/
public class XIncludeTransformer extends AbstractTransformer implements
Composer, Poolable {
@@ -289,12 +289,12 @@
}
public void startDocument() {
- getLogger().debug("Internal start document received");
+ super.getLogger().debug("Internal start document received");
/** We don't pass start document on to the "real" handler **/
}
public void endDocument() {
- getLogger().debug("Internal end document received");
+ super.getLogger().debug("Internal end document received");
/** We don't pass end document on to the "real" handler **/
}
@@ -310,7 +310,7 @@
public void startElement(String namespace, String name, String raw,
Attributes attr) throws SAXException {
- getLogger().debug("Internal element received: "+name);
+ super.getLogger().debug("Internal element received: "+name);
content_handler.startElement(namespace,name,raw,attr);
}
No revision
No revision
1.1.2.29 +2 -2
xml-cocoon/src/org/apache/cocoon/components/language/markup/Attic/AbstractMarkupLanguage.java
Index: AbstractMarkupLanguage.java
===================================================================
RCS file:
/home/cvs/xml-cocoon/src/org/apache/cocoon/components/language/markup/Attic/AbstractMarkupLanguage.java,v
retrieving revision 1.1.2.28
retrieving revision 1.1.2.29
diff -u -r1.1.2.28 -r1.1.2.29
--- AbstractMarkupLanguage.java 2001/03/19 21:20:23 1.1.2.28
+++ AbstractMarkupLanguage.java 2001/04/02 20:18:45 1.1.2.29
@@ -47,7 +47,7 @@
* Base implementation of <code>MarkupLanguage</code>. This class uses
* logicsheets as the only means of code generation. Code generation should
be decoupled from this context!!!
* @author <a href="mailto:[EMAIL PROTECTED]">Ricardo Rocha</a>
- * @version CVS $Revision: 1.1.2.28 $ $Date: 2001/03/19 21:20:23 $
+ * @version CVS $Revision: 1.1.2.29 $ $Date: 2001/04/02 20:18:45 $
*/
public abstract class AbstractMarkupLanguage extends AbstractLoggable
implements MarkupLanguage, Composer, Configurable {
/** The supported language table */
@@ -449,7 +449,7 @@
try {
hasChanged = this.lastModified < this.file.lastModified();
} catch (SecurityException se) {
- getLogger().warn("SecurityException", se);
+ super.getLogger().warn("SecurityException", se);
}
return hasChanged;
}
----------------------------------------------------------------------
In case of troubles, e-mail: [EMAIL PROTECTED]
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]