1 19 20 package org.netbeans.api.registry; 21 22 23 28 public abstract class ContextEvent extends java.util.EventObject { 29 30 ContextEvent(Context source) { 31 super(source); 32 } 33 34 39 public Context getContext() { 40 return (Context)source; 41 } 42 43 public String toString() { 44 return "[context="+getContext()+"] " + super.toString(); } 46 47 } 48 | Popular Tags |