blob: 04d6e04e4125d6d6dc6fe520883de76b9db1b566 [file] [log] [blame]
public class BarImpl implements Bar {
public String getText() {
return "hello";
}
public IBar getIBar() {
return this;
}
}