langtools/make/test/HelloWorld.apt.gold.txt
author arapte
Wed, 14 Sep 2016 21:50:44 +0530
changeset 41383 dd6dd24db080
parent 10 06bc494ca11e
permissions -rw-r--r--
8160056: TextField.setText breaks the contract of EOL Reviewed-by: serb, alexsch
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
06bc494ca11e Initial load
duke
parents:
diff changeset
     2
/**
06bc494ca11e Initial load
duke
parents:
diff changeset
     3
 * This class is used to test the results of the langtools build.
06bc494ca11e Initial load
duke
parents:
diff changeset
     4
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
     5
public class HelloWorld {
06bc494ca11e Initial load
duke
parents:
diff changeset
     6
06bc494ca11e Initial load
duke
parents:
diff changeset
     7
  public HelloWorld();
06bc494ca11e Initial load
duke
parents:
diff changeset
     8
06bc494ca11e Initial load
duke
parents:
diff changeset
     9
  /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    10
   * The old standby!
06bc494ca11e Initial load
duke
parents:
diff changeset
    11
   * @param args The parameters are ignored.
06bc494ca11e Initial load
duke
parents:
diff changeset
    12
   */
06bc494ca11e Initial load
duke
parents:
diff changeset
    13
  public static void main(java.lang.String... args);
06bc494ca11e Initial load
duke
parents:
diff changeset
    14
06bc494ca11e Initial load
duke
parents:
diff changeset
    15
  /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    16
   * This declaration is for the benefit of javah tests.
06bc494ca11e Initial load
duke
parents:
diff changeset
    17
   */
06bc494ca11e Initial load
duke
parents:
diff changeset
    18
  public native void test();
06bc494ca11e Initial load
duke
parents:
diff changeset
    19
}