mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-09 08:09:39 +07:00
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>
|
|
} |