18 lines
356 B
Java
18 lines
356 B
Java
package test.ai.cloud.bytebuddy;
|
|
|
|
public class TestClass {
|
|
public TestClass(){
|
|
//System.out.println("init:" + this.getClass().getName());
|
|
}
|
|
|
|
public TestClass(String tmp){
|
|
//System.out.println("init:" + this.getClass().getName());
|
|
}
|
|
|
|
|
|
public String testA(String aa){
|
|
// throw new RuntimeException("adfasdfas");
|
|
return "TestClass.testA";
|
|
}
|
|
}
|