org.aspectj/tests/pureJava/InterfaceMembers.java

12 lines
241 B
Java
Raw Normal View History

2002-12-16 19:51:06 +01:00
public interface InterfaceMembers {
private class C {}
private interface I {}
private void m();
private int x = 2;
protected class Cp {}
protected interface Ip {}
protected void mp();
protected int fp = 2;
}