You are viewing a plain text version of this content. The canonical link for it is here.
Posted to doxia-commits@maven.apache.org by vs...@apache.org on 2009/02/23 13:51:30 UTC

svn commit: r746997 - in /maven/doxia/doxia-sitetools/trunk/doxia-decoration-model/src/main/java/org/apache/maven/doxia/site/decoration/inheritance: PathDescriptor.java PathUtils.java

Author: vsiveton
Date: Mon Feb 23 12:51:29 2009
New Revision: 746997

URL: http://svn.apache.org/viewvc?rev=746997&view=rev
Log:
o fix javadoc using javadoc:fix

Modified:
    maven/doxia/doxia-sitetools/trunk/doxia-decoration-model/src/main/java/org/apache/maven/doxia/site/decoration/inheritance/PathDescriptor.java
    maven/doxia/doxia-sitetools/trunk/doxia-decoration-model/src/main/java/org/apache/maven/doxia/site/decoration/inheritance/PathUtils.java

Modified: maven/doxia/doxia-sitetools/trunk/doxia-decoration-model/src/main/java/org/apache/maven/doxia/site/decoration/inheritance/PathDescriptor.java
URL: http://svn.apache.org/viewvc/maven/doxia/doxia-sitetools/trunk/doxia-decoration-model/src/main/java/org/apache/maven/doxia/site/decoration/inheritance/PathDescriptor.java?rev=746997&r1=746996&r2=746997&view=diff
==============================================================================
--- maven/doxia/doxia-sitetools/trunk/doxia-decoration-model/src/main/java/org/apache/maven/doxia/site/decoration/inheritance/PathDescriptor.java (original)
+++ maven/doxia/doxia-sitetools/trunk/doxia-decoration-model/src/main/java/org/apache/maven/doxia/site/decoration/inheritance/PathDescriptor.java Mon Feb 23 12:51:29 2009
@@ -46,7 +46,6 @@
      * Construct a PathDescriptor from a path.
      *
      * @param path the path.
-     *
      * @throws java.net.MalformedURLException if a URL cannot be formed from the path.
      */
     public PathDescriptor( final String path ) throws MalformedURLException
@@ -59,7 +58,6 @@
      *
      * @param base a base reference.
      * @param path the path.
-     *
      * @throws java.net.MalformedURLException if a URL cannot be formed from the path.
      */
     public PathDescriptor( final String base, final String path ) throws MalformedURLException
@@ -72,7 +70,6 @@
      *
      * @param baseUrl a base reference.
      * @param path the path.
-     *
      * @throws java.net.MalformedURLException if a URL cannot be formed from the path.
      */
     public PathDescriptor( final URL baseUrl, final String path ) throws MalformedURLException

Modified: maven/doxia/doxia-sitetools/trunk/doxia-decoration-model/src/main/java/org/apache/maven/doxia/site/decoration/inheritance/PathUtils.java
URL: http://svn.apache.org/viewvc/maven/doxia/doxia-sitetools/trunk/doxia-decoration-model/src/main/java/org/apache/maven/doxia/site/decoration/inheritance/PathUtils.java?rev=746997&r1=746996&r2=746997&view=diff
==============================================================================
--- maven/doxia/doxia-sitetools/trunk/doxia-decoration-model/src/main/java/org/apache/maven/doxia/site/decoration/inheritance/PathUtils.java (original)
+++ maven/doxia/doxia-sitetools/trunk/doxia-decoration-model/src/main/java/org/apache/maven/doxia/site/decoration/inheritance/PathUtils.java Mon Feb 23 12:51:29 2009
@@ -42,10 +42,12 @@
     }
 
     /**
+     * <p>convertPath</p>
+     *
      * @param oldPath not null
      * @param newPath not null
      * @return a PathDescriptor converted by the new path
-     * @throws MalformedURLException if any
+     * @throws java.net.MalformedURLException if any
      */
     public static final PathDescriptor convertPath( final PathDescriptor oldPath, final PathDescriptor newPath )
         throws MalformedURLException
@@ -61,6 +63,8 @@
     }
 
     /**
+     * <p>getRelativePath</p>
+     *
      * @param oldPathDescriptor not null
      * @param newPathDescriptor not null
      * @return a relative path depending if PathDescriptor is a file or a web url.