Files
openide/plugins/lombok/testData/configsystem/getter/dumb/after/inner/GetterClassTest.java
Mikhail Pyltsin 2ca5b2bcd4 [java-lombok] IDEA-352726 Augment class in dumb mode in Lombok
- support dumb mode

GitOrigin-RevId: 93a6325ee1fa6ef515c579aa09bec9eb290ed967
2024-05-21 11:54:54 +00:00

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;
}
}