1 19 package org.netbeans.test.codegen; 20 21 import java.io.IOException ; 22 23 26 public class JavaDocTestClass { 27 28 public void firstMethod() { 29 } 30 31 35 public int secondMethod() { 36 return 0; 37 } 38 39 47 public long thirdMethod(int a, String c) { 48 int e = a++; 49 String d = c; 50 51 return e - d.length(); 52 } 53 54 protected static void fourthMethod(int x) throws IOException { 55 return; 57 } 58 59 private void fifthMethod(String d) throws IOException , IllegalAccessError , IllegalArgumentException { 60 } 62 63 protected Object sixthMethod() { 64 return ""; 65 } 66 67 public abstract void seventhMethod(); 68 } 69 | Popular Tags |