java highlighting tests moved to community

This commit is contained in:
Alexey Kudravtsev
2010-06-25 12:46:38 +04:00
parent 7ec040c1ec
commit 735a9d17a8
243 changed files with 22082 additions and 0 deletions
@@ -0,0 +1,15 @@
package effectiveAccess.p2;
import effectiveAccess.ppp;
/**
* Created by IntelliJ IDEA.
* User: cdr
* Date: Jan 24, 2003
* Time: 3:13:49 PM
* To change this template use Options | File Templates.
*/
public class p2 extends ppp {
protected void f() {
}
}
@@ -0,0 +1,17 @@
package effectiveAccess.p2;
public class p3 extends p2 {
}
<error descr="Class 'p4' must either be declared abstract or implement abstract method 'f()' in 'pp'">class p4 extends effectiveAccess.pp</error> {
public void f() {}
}
class pderived extends p2 {
protected void f() {
super.f();
}
protected void v() {
super.v();
}
}
@@ -0,0 +1,12 @@
package effectiveAccess;
/**
* Created by IntelliJ IDEA.
* User: cdr
* Date: Jan 24, 2003
* Time: 3:12:09 PM
* To change this template use Options | File Templates.
*/
public abstract class pp {
abstract void f();
}
@@ -0,0 +1,13 @@
package effectiveAccess;
/**
* Created by IntelliJ IDEA.
* User: cdr
* Date: Jan 24, 2003
* Time: 3:13:09 PM
* To change this template use Options | File Templates.
*/
public abstract class ppp extends pp {
abstract protected void f();
protected void v() {}
}