11 lines
189 B
Java
Vendored
11 lines
189 B
Java
Vendored
public class Foo {
|
|
private String typeof;
|
|
|
|
public String getTypeof() {
|
|
return typeof;
|
|
}
|
|
|
|
public void setTypeof(String typeof) {
|
|
this.typeof = typeof;
|
|
}
|
|
} |