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.

JIRA242.java 568B

12345678910111213141516171819202122232425
  1. package test5;
  2. public class JIRA242 {
  3. static interface IBooleanSeries {
  4. public void setValue(boolean value);
  5. }
  6. public static class BooleanDataSeries implements IBooleanSeries{
  7. @Override
  8. public void setValue(boolean value) {}
  9. }
  10. public static class Hello {
  11. IBooleanSeries BOOL_SERIES;
  12. public int say() {
  13. System.out.println("Hello end :) ");
  14. return 0;
  15. }
  16. public IBooleanSeries createBooleanSeriesStep() {
  17. return new BooleanDataSeries();
  18. }
  19. }
  20. }