1 5 package net.sf.panoptes.swing; 6 7 13 public class DefaultOperationFactory extends OperationFactory { 14 15 18 public Operation createOperation(String operationName, boolean indefinite) { 19 Operation op = new DefaultOperation(); 20 op.setIndefinite(indefinite); 21 return op; 22 23 } 24 25 28 public void createStatusMessage(String message, long timeToLive) { 29 31 } 32 33 36 public void createStatusMessage(String message) { 37 39 } 40 41 } 42 | Popular Tags |