mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-14 18:05:27 +07:00
32 lines
708 B
Java
32 lines
708 B
Java
public class GetterClassTest {
|
|
private int intProperty;
|
|
private String stringProperty;
|
|
private boolean booleanProperty;
|
|
private Boolean booleanObjectProperty;
|
|
|
|
public static void main(String[] args) {
|
|
final GetterClassTest test = new GetterClassTest();
|
|
|
|
test.getIntProperty();
|
|
test.getStringProperty();
|
|
test.getBooleanObjectProperty();
|
|
|
|
test.getBooleanProperty();
|
|
}
|
|
|
|
public int getIntProperty() {
|
|
return this.intProperty;
|
|
}
|
|
|
|
public String getStringProperty() {
|
|
return this.stringProperty;
|
|
}
|
|
|
|
public boolean getBooleanProperty() {
|
|
return this.booleanProperty;
|
|
}
|
|
|
|
public Boolean getBooleanObjectProperty() {
|
|
return this.booleanObjectProperty;
|
|
}
|
|
} |