comparison src/main/java/alice/test/reflection/ReflectionTest.java @ 467:6e304a7a60e7 dispose

remove white space
author sugi
date Sat, 22 Nov 2014 12:08:24 +0900
parents aefbe41fcf12
children
comparison
equal deleted inserted replaced
466:268b1280dc18 467:6e304a7a60e7
41 m.insertAfter("System.out.println(((org.msgpack.type.Value)arg1.getVal()).getType());"); 41 m.insertAfter("System.out.println(((org.msgpack.type.Value)arg1.getVal()).getType());");
42 m.insertAfter("if (arg1.index==10){ System.exit(0);}"); 42 m.insertAfter("if (arg1.index==10){ System.exit(0);}");
43 m.insertAfter("new alice.test.reflection.CSTemplate();"); 43 m.insertAfter("new alice.test.reflection.CSTemplate();");
44 m.insertAfter("ods.update(\"key1\", \"String Data\");"); 44 m.insertAfter("ods.update(\"key1\", \"String Data\");");
45 45
46 Class<?> clazz = tep.toClass(); // load Class 46 Class<?> clazz = tep.toClass(); // load Class
47 @SuppressWarnings("unused") 47 @SuppressWarnings("unused")
48 CSTemplate cs = (CSTemplate)clazz.newInstance(); // create instance 48 CSTemplate cs = (CSTemplate)clazz.newInstance(); // create instance
49 49
50 } 50 }
51 } 51 }