mirror of
https://github.com/sigmasternchen/xtext-core
synced 2025-03-15 08:18:55 +00:00
11 lines
144 B
Java
11 lines
144 B
Java
public class Test {
|
|
private Test foo;
|
|
|
|
public void setFoo(Test foo) {
|
|
this.foo = foo;
|
|
}
|
|
|
|
public Test getFoo() {
|
|
return this.foo;
|
|
}
|
|
}
|