langtools/test/com/sun/javadoc/testSupplementary/C.java
author lana
Tue, 22 Jul 2014 11:56:22 -0700
changeset 25648 dcda1ef77e37
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
public class C
06bc494ca11e Initial load
duke
parents:
diff changeset
     4
{
06bc494ca11e Initial load
duke
parents:
diff changeset
     5
    // U+10400 (\ud801\udc00): DESERET CAPITAL LETTER LONG I (can be start or part)
06bc494ca11e Initial load
duke
parents:
diff changeset
     6
    // U+1D17B (\ud834\udd7b): MUSICAL SYMBOL COMBINING ACCENT (can only be part)
06bc494ca11e Initial load
duke
parents:
diff changeset
     7
    // U+1D100 (\ud834\udd00): MUSICAL SYMBOL SINGLE BARLINE (can be none of start nor part)
06bc494ca11e Initial load
duke
parents:
diff changeset
     8
06bc494ca11e Initial load
duke
parents:
diff changeset
     9
    // valid tags
06bc494ca11e Initial load
duke
parents:
diff changeset
    10
06bc494ca11e Initial load
duke
parents:
diff changeset
    11
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    12
     * @see C#\ud801\udc00method()
06bc494ca11e Initial load
duke
parents:
diff changeset
    13
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    14
    public void \ud801\udc00method() {};
06bc494ca11e Initial load
duke
parents:
diff changeset
    15
06bc494ca11e Initial load
duke
parents:
diff changeset
    16
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    17
     * @see C#method\ud801\udc00()
06bc494ca11e Initial load
duke
parents:
diff changeset
    18
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    19
    public void method\ud801\udc00() {};
06bc494ca11e Initial load
duke
parents:
diff changeset
    20
06bc494ca11e Initial load
duke
parents:
diff changeset
    21
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    22
     * @see C#method\ud834\udd7b()
06bc494ca11e Initial load
duke
parents:
diff changeset
    23
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    24
    public void method\ud834\udd7b() {};
06bc494ca11e Initial load
duke
parents:
diff changeset
    25
06bc494ca11e Initial load
duke
parents:
diff changeset
    26
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    27
     * @serialField \ud801\udc00field int
06bc494ca11e Initial load
duke
parents:
diff changeset
    28
     * @serialField field\ud801\udc00 int
06bc494ca11e Initial load
duke
parents:
diff changeset
    29
     * @serialField field\ud834\udd7b int
06bc494ca11e Initial load
duke
parents:
diff changeset
    30
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    31
    public void method1() {};
06bc494ca11e Initial load
duke
parents:
diff changeset
    32
06bc494ca11e Initial load
duke
parents:
diff changeset
    33
    // invalid tags - should generate warnings
06bc494ca11e Initial load
duke
parents:
diff changeset
    34
06bc494ca11e Initial load
duke
parents:
diff changeset
    35
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    36
     * @see C#method\ud834\udd00()
06bc494ca11e Initial load
duke
parents:
diff changeset
    37
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    38
    public void method2() {};
06bc494ca11e Initial load
duke
parents:
diff changeset
    39
06bc494ca11e Initial load
duke
parents:
diff changeset
    40
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    41
     * @serialField field\ud801\ud801 int
06bc494ca11e Initial load
duke
parents:
diff changeset
    42
     * @serialField \ud834\udd7bfield int
06bc494ca11e Initial load
duke
parents:
diff changeset
    43
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    44
    public void method3() {};
06bc494ca11e Initial load
duke
parents:
diff changeset
    45
}