1 11 package org.eclipse.jdt.internal.junit.ui; 12 13 import org.eclipse.swt.custom.CTabFolder; 14 import org.eclipse.swt.dnd.Clipboard; 15 16 17 20 public abstract class TestRunTab { 21 22 28 public abstract void createTabControl(CTabFolder tabFolder, Clipboard clipboard, TestRunnerViewPart runner); 29 30 33 public abstract String getSelectedTestId(); 34 35 38 public void activate() { 39 } 40 41 44 public void setFocus() { 45 } 46 47 50 public void aboutToStart() { 51 } 52 53 56 public void aboutToEnd() { 57 } 58 59 62 public abstract String getName(); 63 64 67 public void setSelectedTest(String testId) { 68 } 69 70 73 public void startTest(String testId) { 74 } 75 76 79 public void endTest(String testId) { 80 } 81 82 85 public void rerunTest(String testId) { 86 } 87 88 91 public void endRerunTest(String testId) { 92 } 93 94 97 public void testStatusChanged(TestRunInfo newInfo) { 98 } 99 102 public void newTreeEntry(String treeEntry) { 103 } 104 105 108 public void selectNext() { 109 } 110 111 114 public void selectPrevious() { 115 } 116 } 117 | Popular Tags |