File: B.java

package info (click to toggle)
classycle 1.4.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 912 kB
  • sloc: java: 7,383; xml: 340; makefile: 12
file content (17 lines) | stat: -rw-r--r-- 191 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package example;

public class B extends BofA
{
  class M implements example.p.A
  {
    public A getA()
    {
      return null;
    }
  }
  
  public A getA()
  {
    return new A();
  }
}