KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > sf > panoptes > swing > DefaultOperation


1 /*
2  * Created on Sep 3, 2003
3  *
4  */

5 package net.sf.panoptes.swing;
6
7 /**
8  *
9  *
10  * @author Dag Liodden
11  * @version 0.1
12  */

13 public class DefaultOperation implements Operation {
14
15     /* (non-Javadoc)
16      * @see net.sf.panoptes.swing.Operation#getName()
17      */

18     public String JavaDoc getName() {
19         // TODO Auto-generated method stub
20
return null;
21     }
22
23     /* (non-Javadoc)
24      * @see net.sf.panoptes.swing.Operation#newTask(java.lang.String)
25      */

26     public void newTask(String JavaDoc taskName) {
27         // TODO Auto-generated method stub
28

29     }
30
31     /* (non-Javadoc)
32      * @see net.sf.panoptes.swing.Operation#setProgress(int, int)
33      */

34     public void setProgress(int currentProgress, int total) {
35         // TODO Auto-generated method stub
36

37     }
38
39     /* (non-Javadoc)
40      * @see net.sf.panoptes.swing.Operation#operationFinished()
41      */

42     public void operationFinished() {
43         // TODO Auto-generated method stub
44

45     }
46
47
48     /* (non-Javadoc)
49      * @see net.sf.panoptes.swing.Operation#setIndefinite(boolean)
50      */

51     public void setIndefinite(boolean isIndefinite) {
52         // TODO Auto-generated method stub
53

54     }
55
56     /* (non-Javadoc)
57      * @see net.sf.panoptes.swing.Operation#isIndefinite()
58      */

59     public boolean isIndefinite() {
60         // TODO Auto-generated method stub
61
return false;
62     }
63
64 }
65
Popular Tags