File: AB.java

package info (click to toggle)
libxjavadoc-java 1.1-4
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 652 kB
  • ctags: 1,061
  • sloc: java: 6,259; xml: 505; makefile: 11
file content (20 lines) | stat: -rw-r--r-- 284 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package ab;

/** @no-star at-the-end */
class AB{

  interface C{

     String getFoo();
     void setFoo(String foo);

     String getBar();
     void setBar(int bar);

     boolean[] isThisIsNotAnAccessor();
     void setThisIsAMutator(boolean[] a);
  }
}
interface B{
  class D{}
}