langtools/test/com/sun/javadoc/testWarnings/pkg/X.java
author lana
Mon, 11 Aug 2014 09:25:30 -0700
changeset 25880 e5967ea9bde2
parent 10 06bc494ca11e
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/* /nodynamiccopyright/ */
06bc494ca11e Initial load
duke
parents:
diff changeset
     2
06bc494ca11e Initial load
duke
parents:
diff changeset
     3
package pkg;
06bc494ca11e Initial load
duke
parents:
diff changeset
     4
06bc494ca11e Initial load
duke
parents:
diff changeset
     5
import java.io.Serializable;
06bc494ca11e Initial load
duke
parents:
diff changeset
     6
06bc494ca11e Initial load
duke
parents:
diff changeset
     7
/**
06bc494ca11e Initial load
duke
parents:
diff changeset
     8
 * {@link com.package1.Class1#publicStaticMethod().
06bc494ca11e Initial load
duke
parents:
diff changeset
     9
 * Any label would be ignored.
06bc494ca11e Initial load
duke
parents:
diff changeset
    10
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    11
public class X implements Serializable {
06bc494ca11e Initial load
duke
parents:
diff changeset
    12
06bc494ca11e Initial load
duke
parents:
diff changeset
    13
    private int f;
06bc494ca11e Initial load
duke
parents:
diff changeset
    14
06bc494ca11e Initial load
duke
parents:
diff changeset
    15
    private X(){}
06bc494ca11e Initial load
duke
parents:
diff changeset
    16
06bc494ca11e Initial load
duke
parents:
diff changeset
    17
    private void m() {}
06bc494ca11e Initial load
duke
parents:
diff changeset
    18
06bc494ca11e Initial load
duke
parents:
diff changeset
    19
    /** @see X#m() */
06bc494ca11e Initial load
duke
parents:
diff changeset
    20
    private static class P implements Serializable {}
06bc494ca11e Initial load
duke
parents:
diff changeset
    21
06bc494ca11e Initial load
duke
parents:
diff changeset
    22
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    23
     * {@link #X()}<br/>
06bc494ca11e Initial load
duke
parents:
diff changeset
    24
     * {@link #m()}<br/>
06bc494ca11e Initial load
duke
parents:
diff changeset
    25
     * {@link #f}<br/>
06bc494ca11e Initial load
duke
parents:
diff changeset
    26
     * {@link java.lang.String#toString()}<br/>
06bc494ca11e Initial load
duke
parents:
diff changeset
    27
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    28
    public void foo() {}
06bc494ca11e Initial load
duke
parents:
diff changeset
    29
}