classModifiers.java 1.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
public class Open /* pkg.Open*/ {
  public  Open();//  .ctor()




  class Private ...
  
    class Private2 ...
  
    class StaticInternal ...
  
  }

private static final class Private /* pkg.Open.Private*/ extends pkg.Open {
  public  Private();//  .ctor()

}

protected final class Private2 /* pkg.Open.Private2*/ {
  public  Private2();//  .ctor()

}

public static final class StaticInternal /* pkg.Open.StaticInternal*/ {
  public  StaticInternal();//  .ctor()

}

public final class OuterInternal /* pkg.OuterInternal*/ {
  public  OuterInternal();//  .ctor()

}

final class TopLevelPrivate /* pkg.TopLevelPrivate*/ {
  public  TopLevelPrivate();//  .ctor()

}

public abstract class Season /* pkg.Season*/ {
41
  protected  Season();//  .ctor()
42 43 44 45 46 47 48 49 50 51 52 53 54 55


  class Nested ...
  
  }

public static final class Nested /* pkg.Season.Nested*/ extends pkg.Season {
  public  Nested();//  .ctor()

}

public abstract class SealedWithArgs /* pkg.SealedWithArgs*/ {
  private final int a;

56
  protected  SealedWithArgs(int);//  .ctor(int)
57 58 59

  public final int getA();//  getA()

60
}