Modified:
/trunk/tck/pom.xml
/trunk/tck/src/org/objenesis/tck/TCK.java
=======================================
--- /trunk/tck/pom.xml Wed Aug 26 14:12:00 2009
+++ /trunk/tck/pom.xml Wed Aug 26 14:27:20 2009
@@ -137,7 +137,16 @@
</goals>
</execution>
</executions>
- </plugin>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <configuration>
+ <links>
+ <link>http://objenesis.googlecode.com/svn/docs/apidocs/</link>
+ </links>
+ </configuration>
+ </plugin>
</plugins>
</build>
=======================================
--- /trunk/tck/src/org/objenesis/tck/TCK.java Wed Jun 17 16:38:21 2009
+++ /trunk/tck/src/org/objenesis/tck/TCK.java Wed Aug 26 14:27:20 2009
@@ -25,10 +25,11 @@
import org.objenesis.Objenesis;
/**
- * <b>Technology Compatibility Kit</b> (TCK) for {@link Objenesis}s. <p/>
This TCK accepts a set
- * of candidate classes (class it attempts to instantiate) and a set of
Objenesis implementations.
- * It then tries instantiating every candidate with every Objenesis
implementations, reporting the
- * results to a {@link Reporter}.
+ * <b>Technology Compatibility Kit</b> (TCK) for {@link Objenesis}s.
+ * <p/>
+ * This TCK accepts a set of candidate classes (class it attempts to
instantiate) and a set of
+ * Objenesis implementations. It then tries instantiating every candidate
with every Objenesis
+ * implementations, reporting the results to a {@link Reporter}.
* <h3>Example usage</h3>
*
* <pre>
@@ -46,15 +47,15 @@
* </pre>
*
* @author Joe Walnes
- * @see ObjectInstantiator
+ * @see org.objenesis.instantiator.ObjectInstantiator
* @see Reporter
* @see Main
*/
public class TCK {
- private List objenesisInstances = new ArrayList();
- private List candidates = new ArrayList();
- private Map descriptions = new HashMap();
+ private final List objenesisInstances = new ArrayList();
+ private final List candidates = new ArrayList();
+ private final Map descriptions = new HashMap();
/**
* Register a candidate class to attempt to instantiate.