dion        2004/01/07 16:12:33

  Modified:    src/java/org/apache/maven/jelly/tags Tag: MAVEN-1_0-BRANCH
                        BaseTagSupport.java
  Log:
  Code cleanup
  
  Revision  Changes    Path
  No                   revision
  No                   revision
  1.8.4.1   +10 -1     maven/src/java/org/apache/maven/jelly/tags/BaseTagSupport.java
  
  Index: BaseTagSupport.java
  ===================================================================
  RCS file: /home/cvs/maven/src/java/org/apache/maven/jelly/tags/BaseTagSupport.java,v
  retrieving revision 1.8
  retrieving revision 1.8.4.1
  diff -u -r1.8 -r1.8.4.1
  --- BaseTagSupport.java       19 Aug 2003 04:27:58 -0000      1.8
  +++ BaseTagSupport.java       8 Jan 2004 00:12:33 -0000       1.8.4.1
  @@ -60,14 +60,23 @@
   import org.apache.commons.jelly.TagSupport;
   import org.apache.maven.jelly.MavenJellyContext;
   
  +/**
  + * A class for Maven Jelly tags
  + */
   public abstract class BaseTagSupport
       extends TagSupport
   {
  +    /**
  +     * Create an instance
  +     */
       public BaseTagSupport()
       {
           super();
       }
   
  +    /**
  +     * @return the maven context (used to retrieve variables)
  +     */
       public MavenJellyContext getMavenContext()
       {
           return (MavenJellyContext) getContext();
  @@ -76,7 +85,7 @@
       /**
        * Check a given 'attribute' has a value and throw the corresponding
        * exception if it doesn't
  -     * 
  +     *
        * @param attribute the attribute to check
        * @param message the message to pass in with the exception
        * @throws MissingAttributeException when the attribute is null
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to