mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-22 16:19:35 +07:00
fb9bddf05c
GitOrigin-RevId: 8800ed4e42320a3df002be58955a8a02f6149c17
19 lines
346 B
Java
19 lines
346 B
Java
// "Move member into class" "false"
|
|
|
|
public class beforeIncompleteMethodInClass {
|
|
private String testInt;
|
|
|
|
public beforeIncompleteMethodInClass(int testInt) {
|
|
this.testInt = "aaaa";
|
|
}
|
|
|
|
public String getTestInt() {
|
|
return testInt;
|
|
}
|
|
|
|
public void setTestInt(String testInt) {
|
|
this.testInt = testInt;
|
|
}
|
|
|
|
public<caret>
|
|
} |