You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cactus-dev@jakarta.apache.org by vm...@apache.org on 2003/05/14 20:20:07 UTC

cvs commit: jakarta-cactus/integration/ant/src/java/org/apache/cactus/integration/ant/container ContainerWrapper.java

vmassol     2003/05/14 11:20:07

  Modified:    integration/ant/src/java/org/apache/cactus/integration/ant/container
                        ContainerWrapper.java
  Log:
  Removed explicit package names in @see tags. For several reasons:
  - there are already imports at the top of the file and in the same way as we don't qualify classes it is the same for javadoc
  - Eclipse does not perform correctly refactoring because it doesn't change the @see tags! (IDEA does this correctly :-)). Thus we have several errors due to recent refactorings...
  - it allows to have lines < 80 characters
  
  Revision  Changes    Path
  1.5       +12 -12    jakarta-cactus/integration/ant/src/java/org/apache/cactus/integration/ant/container/ContainerWrapper.java
  
  Index: ContainerWrapper.java
  ===================================================================
  RCS file: /home/cvs/jakarta-cactus/integration/ant/src/java/org/apache/cactus/integration/ant/container/ContainerWrapper.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- ContainerWrapper.java	14 May 2003 13:56:21 -0000	1.4
  +++ ContainerWrapper.java	14 May 2003 18:20:07 -0000	1.5
  @@ -98,7 +98,7 @@
       // AbstractContainer Implementation ----------------------------------------
   
       /**
  -     * @see org.apache.cactus.integration.ant.container.Container#getName
  +     * @see Container#getName
        */
       public String getName()
       {
  @@ -106,7 +106,7 @@
       }
   
       /**
  -     * @see org.apache.cactus.integration.ant.container.Container#getPort
  +     * @see Container#getPort
        */
       public int getPort()
       {
  @@ -114,7 +114,7 @@
       }
   
       /**
  -     * @see org.apache.cactus.integration.ant.container.Container#getToDir
  +     * @see Container#getToDir
        */
       public File getToDir()
       {
  @@ -122,7 +122,7 @@
       }
   
       /**
  -     * @see org.apache.cactus.integration.ant.container.Container#init
  +     * @see Container#init
        */
       public void init()
       {
  @@ -130,7 +130,7 @@
       }
   
       /**
  -     * @see org.apache.cactus.integration.ant.container.Container#isEnabled
  +     * @see Container#isEnabled
        */
       public boolean isEnabled()
       {
  @@ -138,7 +138,7 @@
       }
   
       /**
  -     * @see org.apache.cactus.integration.ant.container.Container#isExcluded
  +     * @see Container#isExcluded
        */
       public boolean isExcluded(String theTestName)
       {
  @@ -146,7 +146,7 @@
       }
   
       /**
  -     * @see org.apache.cactus.integration.ant.container.Container#startUp
  +     * @see Container#startUp
        */
       public void startUp()
       {
  @@ -154,7 +154,7 @@
       }
   
       /**
  -     * @see org.apache.cactus.integration.ant.container.Container#shutDown
  +     * @see Container#shutDown
        */
       public void shutDown()
       {
  @@ -162,7 +162,7 @@
       }
       
       /**
  -     * @see org.apache.cactus.integration.ant.container.Container#setAntTaskFactory
  +     * @see Container#setAntTaskFactory
        */
       public void setAntTaskFactory(AntTaskFactory theFactory)
       {
  @@ -170,7 +170,7 @@
       }
   
       /**
  -     * @see org.apache.cactus.integration.ant.container.Container#setLog
  +     * @see Container#setLog
        */
       public void setLog(Log theLog)
       {
  @@ -178,7 +178,7 @@
       }
   
       /**
  -     * @see org.apache.cactus.integration.ant.container.Container#setDeployableFile
  +     * @see Container#setDeployableFile
        */
       public void setDeployableFile(File theWarFile)
       {
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: cactus-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: cactus-dev-help@jakarta.apache.org