1 17 package org.columba.core.command; 18 19 import java.util.EventObject ; 20 21 24 public class TaskManagerEvent extends EventObject { 25 29 private static final long serialVersionUID = 4738977594206080618L; 30 31 protected Worker worker; 32 33 37 public TaskManagerEvent(Object theSource, Worker theWorker) { 38 super(theSource); 39 this.worker = theWorker; 40 } 41 42 45 public Worker getWorker() { 46 return worker; 47 } 48 } 49 | Popular Tags |