You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Parameters.java 233B

12345678910111213
  1. public class Parameters {
  2. public void foo(String abc,int def, String... ghi) {
  3. }
  4. public void bar(Parameters this, String abc) {
  5. }
  6. class Inner {
  7. public Inner(String x) {
  8. }
  9. }
  10. enum Color { RED, GREEN, BLUE; }
  11. }