You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

StatisticsTypeImpl.java 333B

1234567891011121314
  1. interface StatisticsType {
  2. }
  3. public class StatisticsTypeImpl implements StatisticsType {
  4. static class UIStatisticsType extends UofwStatisticsType {
  5. };
  6. public static void main(String argz[]) {
  7. System.out.println(new UIStatisticsType().toString());
  8. }
  9. }
  10. class UofwStatisticsType extends StatisticsTypeImpl {
  11. }