mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 06:05:01 +07:00
test++
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
import javax.swing.JComponent;
|
||||
|
||||
class IdentityComplete {
|
||||
private int myField;
|
||||
|
||||
public void method() {
|
||||
class MethodLocal {
|
||||
private int myMethodLocalInt;
|
||||
public void methodLocalInc() {
|
||||
myMethodLocalInt++;
|
||||
}
|
||||
}
|
||||
|
||||
JComponent methodAnonymous = new JComponent() {
|
||||
private int myMethodAnonymousInt;
|
||||
public void methodAnonymousInc() {
|
||||
myMethodAnonymousInt++;
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
public void context() {
|
||||
method();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user