1 19 20 package org.netbeans.core.execution; 21 22 26 public class ExecutionEvent extends java.util.EventObject { 27 28 static final long serialVersionUID = -9181112840849353114L; 29 30 private DefaultSysProcess proc; 31 32 36 public ExecutionEvent(Object source, DefaultSysProcess proc) { 37 super(source); 38 this.proc = proc; 39 } 40 41 44 public DefaultSysProcess getProcess() { 45 return proc; 46 } 47 48 } 49 | Popular Tags |