You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by je...@apache.org on 2002/08/04 08:38:45 UTC

cvs commit: jakarta-commons-sandbox/jelly/src/java/org/apache/commons/jelly/tags/quartz QuartzTagSupport.java

jefft       2002/08/03 23:38:45

  Modified:    jelly/src/java/org/apache/commons/jelly JellyContext.java
               jelly/src/java/org/apache/commons/jelly/tags/quartz
                        QuartzTagSupport.java
  Log:
  Fix some javadoc warnings
  
  Revision  Changes    Path
  1.21      +4 -4      jakarta-commons-sandbox/jelly/src/java/org/apache/commons/jelly/JellyContext.java
  
  Index: JellyContext.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/jelly/src/java/org/apache/commons/jelly/JellyContext.java,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -r1.20 -r1.21
  --- JellyContext.java	31 Jul 2002 16:14:48 -0000	1.20
  +++ JellyContext.java	4 Aug 2002 06:38:45 -0000	1.21
  @@ -419,7 +419,7 @@
   
       /** 
        * Attempts to parse the script from the given uri using the 
  -     * {#link getResource()} method then returns the compiled script.
  +     * {@link #getResource} method then returns the compiled script.
        */
       public Script compileScript(String uri) throws Exception {
           XMLParser parser = new XMLParser();
  @@ -434,7 +434,7 @@
   
       /** 
        * Attempts to parse the script from the given URL using the 
  -     * {#link getResource()} method then returns the compiled script.
  +     * {@link #getResource} method then returns the compiled script.
        */
       public Script compileScript(URL url) throws Exception {
           XMLParser parser = new XMLParser();
  @@ -594,7 +594,7 @@
       /** 
        * @return the current URL context of the current script that is executing. 
        *  This URL context is used to deduce relative scripts when relative URIs are
  -     *  used in calls to {@link getResource()} to process relative scripts.
  +     *  used in calls to {@link #getResource} to process relative scripts.
        */ 
       public URL getCurrentURL() {
           return currentURL;
  @@ -603,7 +603,7 @@
       /** 
        * Sets the current URL context of the current script that is executing. 
        *  This URL context is used to deduce relative scripts when relative URIs are
  -     *  used in calls to {@link getResource()} to process relative scripts.
  +     *  used in calls to {@link #getResource} to process relative scripts.
        */ 
       public void setCurrentURL(URL currentURL) { 
           this.currentURL = currentURL;
  
  
  
  1.2       +4 -4      jakarta-commons-sandbox/jelly/src/java/org/apache/commons/jelly/tags/quartz/QuartzTagSupport.java
  
  Index: QuartzTagSupport.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/jelly/src/java/org/apache/commons/jelly/tags/quartz/QuartzTagSupport.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- QuartzTagSupport.java	25 Jul 2002 01:51:20 -0000	1.1
  +++ QuartzTagSupport.java	4 Aug 2002 06:38:45 -0000	1.2
  @@ -82,7 +82,7 @@
        *
        *  <p>
        *  If a scheduler has already been created an installed
  -     *  in the variable {@link SCHED_VAR_NAME}, then that scheduler
  +     *  in the variable {@link #SCHED_VAR_NAME}, then that scheduler
        *  will be returned.  Otherwise, a new StdScheduler will be
        *  created, started, and installed.  Additionally, a runtime
        *  shutdown hook will be added to cleanly shutdown the scheduler.
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>