Index: JellyBuildListener.java =================================================================== RCS file: /home/cvspublic/maven/src/java/org/apache/maven/jelly/JellyBuildListener.java,v retrieving revision 1.4.4.2 diff -u -r1.4.4.2 JellyBuildListener.java --- JellyBuildListener.java 26 Jan 2004 23:36:08 -0000 1.4.4.2 +++ JellyBuildListener.java 20 Feb 2004 03:28:22 -0000 @@ -65,14 +65,38 @@ /** Whether or not to use emacs-style output */ protected boolean emacsMode = false; + + /** + * Default constuctor + */ + public JellyBuildListener ( ) + { + this.taskStack = new Stack(); + this.debug = false; + } + /** + * Convenience constuctor + * + * @param out + */ public JellyBuildListener( XMLOutput out ) { this.taskStack = new Stack(); this.out = out; this.debug = false; } - + + /** + * Set the XMLOutput for this listener + * + * @param out + */ + public void setXMLOutput ( XMLOutput out ) + { + this.out = out; + } + /** * Sets this logger to produce emacs (and other editor) friendly output. *