blob: 5de171c7192c9a38cf450c004b016b83023cae7d [file] [log] [blame]
package compiler;
/**
* a simple testprobe to check if the compiler api works
*/
public class TestProbe1 {
private String testAttr;
public String getTestAttr() {
return testAttr;
}
public void setTestAttr(String testAttr) {
this.testAttr = testAttr;
}
}