Lines Matching refs:value
41 void testJava(Object value) {
42 this.editor.setValue(value);
46 System.out.println("Property value before: " + value);
47 System.out.println("Property value after: " + object);
49 if (!areEqual(value, object))
53 void testValue(Object value, String text) {
54 this.editor.setValue(value);
55 validate(value, text);
58 void testText(String text, Object value) {
60 validate(value, text);
63 private void validate(Object value, String text) {
64 if (!areEqual(value, this.editor.getValue()))
65 throw new Error("value should be " + value);
77 private static Object execute(String classname, String methodname, String value) {
81 + " return " + value + ";"