1 19 package org.netbeans.test.codegen; 20 21 import java.io.IOException ; 22 23 28 public class MethodTest1 { 29 30 public void firstMethod() { 31 } 32 33 public int secondMethod() { 34 return 0; 35 } 36 37 45 public long thirdMethod(int a, String c) { 46 int e = a++; 47 String d = c; 48 49 return e - d.length(); 50 } 51 52 protected static void fourthMethod(int x) throws IOException { 53 return; 55 } 56 57 private void fifthMethod(String d) throws IOException , IllegalAccessError , IllegalArgumentException { 58 } 60 61 protected Object sixthMethod() { 62 return ""; 63 } 64 65 public abstract void seventhMethod(); 66 67 public void eighthMethod() { 68 } 69 70 public interface TestInterface { 71 void interfaceMethod(); 72 } 73 } 74 | Popular Tags |