Home | History | Annotate | Download | only in tko
      1 package autotest.tko;
      2 
      3 import autotest.common.CustomHistory.HistoryToken;
      4 
      5 interface TestSelectionListener {
      6     public void onSelectTest(int testId);
      7     public HistoryToken getSelectTestHistoryToken(int testId);
      8 }
      9