1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
package java_integration.fixtures;
public class MethodNames {
public static void lowercase1() {}
public static void camelCase1() {}
public static void camelWithUPPER1() {}
public static void camelWITHUpper1() {}
public static void CAMELWithUpper1() {}
public static Object getValue1() {return null;}
public static Object getValues1(Object otherValue) {return null;}
public static void setValue1(Object value) {}
public static void setValues1(Object value, Object otherValue) {}
public static boolean isFirst1() {return false;}
public static boolean isSecond1(Object something) {return false;}
public static boolean hasThird1() {return false;}
public static boolean hasFourth1(Object something) {return false;}
public static String __send__() { return "foo"; }
public void lowercase2() {}
public void camelCase2() {}
public void camelWithUPPER2() {}
public void camelWITHUpper2() {}
public void CAMELWithUpper2() {}
public Object getValue2() {return null;}
public Object getValues2(Object something) {return null;}
public void setValue2(Object value) {}
public void setValues2(Object value, Object otherValue) {}
public Object getJConsecutiveCaps() {return null;}
public void setJConsecutiveCaps(Object value) {}
public boolean isFirst2() {return false;}
public boolean isSecond2(Object something) {return false;}
public boolean hasThird2() {return false;}
public boolean hasFourth2(Object something) {return false;}
public String initialize() {return "foo";}
public String type() {return "foo";}
public String __type__() {return "foo";}
public String id() {return "foo";}
public String __id__() {return "foo";}
}
|