Author: ebourg
Date: Wed May 14 09:05:43 2008
New Revision: 656324
URL:
http://svn.apache.org/viewvc?rev=656324&view=revLog:
Modified the javadoc in ExtendedProperties to redirect users to Commons Configuration for advanced needs
Modified:
commons/proper/collections/branches/collections_jdk5_branch/pom.xml
commons/proper/collections/branches/collections_jdk5_branch/src/java/org/apache/commons/collections/ExtendedProperties.java
Modified: commons/proper/collections/branches/collections_jdk5_branch/pom.xml
URL:
http://svn.apache.org/viewvc/commons/proper/collections/branches/collections_jdk5_branch/pom.xml?rev=656324&r1=656323&r2=656324&view=diff==============================================================================
--- commons/proper/collections/branches/collections_jdk5_branch/pom.xml (original)
+++ commons/proper/collections/branches/collections_jdk5_branch/pom.xml Wed May 14 09:05:43 2008
@@ -423,4 +423,20 @@
</plugins>
</build>
+ <reporting>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <configuration>
+ <linksource>true</linksource>
+ <links>
+ <link>
http://java.sun.com/javase/6/docs/api</link>
+ <link>
http://commons.apache.org/configuration/apidocs/</link>
+ </links>
+ </configuration>
+ </plugin>
+ </plugins>
+ </reporting>
+
</project>
Modified: commons/proper/collections/branches/collections_jdk5_branch/src/java/org/apache/commons/collections/ExtendedProperties.java
URL:
http://svn.apache.org/viewvc/commons/proper/collections/branches/collections_jdk5_branch/src/java/org/apache/commons/collections/ExtendedProperties.java?rev=656324&r1=656323&r2=656324&view=diff==============================================================================
--- commons/proper/collections/branches/collections_jdk5_branch/src/java/org/apache/commons/collections/ExtendedProperties.java (original)
+++ commons/proper/collections/branches/collections_jdk5_branch/src/java/org/apache/commons/collections/ExtendedProperties.java Wed May 14 09:05:43 2008
@@ -41,8 +41,12 @@
* to use the same key many times concatenating the value strings
* instead of overwriting them.
* <p>
- * <b>Please consider using the <code>PropertiesConfiguration</code> class in
- * Commons-Configuration as soon as it is released.</b>
+ * <b>Please consider using the
+ * {@link org.apache.commons.configuration.PropertiesConfiguration} class in
+ * <a href="
http://commons.apache.org/configuration">Commons Configuration</a>.
+ * It's an evolution of <code>ExtendedProperties</code> supporting more
+ * features like automatic reloading, advanced interpolation, more type
+ * conversions, changes notifications and file layout preservation.</b>
* <p>
* The Extended Properties syntax is explained here:
*