Javadoc fixes.

This commit is contained in:
Michael Bayne
2011-10-14 21:32:27 -07:00
parent eab18691ea
commit 5ff6dd3477
3 changed files with 11 additions and 9 deletions
+5 -3
View File
@@ -37,7 +37,7 @@
classpathref="built.classpath"/>
</target>
<target name="javadoc" depends="-prepare" description="Builds javadocs.">
<target name="javadoc" depends="compile" description="Builds javadocs.">
<tstamp><format property="year" pattern="yyyy"/></tstamp>
<mkdir dir="${javadoc.dir}"/>
<javadoc windowtitle="${ant.project.name} API" doctitle="${ant.project.name} API"
@@ -45,8 +45,10 @@
additionalparam="-breakiterator">
<packageset dir="${src.dir}"/>
<bottom>Copyright &#169; 2000-${year} Michael Bayne, et al. All Rights Reserved.</bottom>
<classpath refid="classpath"/>
<link href="http://download.oracle.com/javase/1.5.0/docs/api/"/>
<classpath refid="built.classpath"/>
<link href="http://download.oracle.com/javase/6/docs/api/"/>
<link href="http://java.sun.com/products/javamail/javadocs/"/>
<link href="http://download.oracle.com/javaee/1.2.1/api/"/>
</javadoc>
</target>
@@ -103,14 +103,14 @@ public abstract class ObserverList<T>
FAST_UNSAFE;
};
/** @deprecated Use {@link Policy.SAFE_IN_ORDER}. */
/** @deprecated Use {@link Policy#SAFE_IN_ORDER}. */
@Deprecated public static final int SAFE_IN_ORDER_NOTIFY = 1;
/** @deprecated Use {@link Policy.FAST_UNSAFE}. */
/** @deprecated Use {@link Policy#FAST_UNSAFE}. */
@Deprecated public static final int FAST_UNSAFE_NOTIFY = 2;
/**
* Creates an observer list with {@link Policy.SAFE_IN_ORDER} notification policy.
* Creates an observer list with {@link Policy#SAFE_IN_ORDER} notification policy.
*/
public static <T> ObserverList<T> newSafeInOrder ()
{
@@ -118,7 +118,7 @@ public abstract class ObserverList<T>
}
/**
* Creates an observer list with {@link Policy.FAST_UNSAFE} notification policy.
* Creates an observer list with {@link Policy#FAST_UNSAFE} notification policy.
*/
public static <T> ObserverList<T> newFastUnsafe ()
{
@@ -14,7 +14,7 @@ import java.lang.ref.WeakReference;
public class WeakObserverList<T> extends ObserverList<T>
{
/**
* Creates a weak observer list with {@link Policy.SAFE_IN_ORDER} notification policy.
* Creates a list with {@link ObserverList.Policy#SAFE_IN_ORDER} notification policy.
*/
public static <T> WeakObserverList<T> newSafeInOrder ()
{
@@ -22,7 +22,7 @@ public class WeakObserverList<T> extends ObserverList<T>
}
/**
* Creates a weak observer list with {@link Policy.FAST_UNSAFE} notification policy.
* Creates a list with {@link ObserverList.Policy#FAST_UNSAFE} notification policy.
*/
public static <T> WeakObserverList<T> newFastUnsafe ()
{