Merge branch 'master' of git.labs.intellij.net:idea/community

This commit is contained in:
irengrig
2010-07-14 14:06:17 +04:00
1311 changed files with 145161 additions and 7663 deletions
@@ -0,0 +1,14 @@
// "Add constructor parameter" "true"
class A {
private final int field;
private int j;
A(int field) {
this(0, field);
}
A(int j, int field) {
this.j = j;
this.field = field;
}
}
@@ -0,0 +1,13 @@
// "Add constructor parameter" "true"
class A {
private final int <caret>field;
private int j;
A() {
this(0);
}
A(int j) {
this.j = j;
}
}
@@ -0,0 +1,16 @@
// "Suppress for class" "false"
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
class Test {
@javax.annotation.Generated(value = "unknown")
public static void main(String[] args) {
ActionListener listener = new ActionListener() {
public void actionPerformed(ActionEvent e) {
int <caret>i = 0;
System.out.println(i);
}
};
}
}