00001 package edu.rice.cs.hpc.traceviewer.ui; 00002 00003 /************************************************************************ 00004 * 00005 * Interface to notify that an event has been activated (or deactivated) 00006 * 00007 ************************************************************************/ 00008 public interface IActiveNotification 00009 { 00010 /**** 00011 * Called when an event has been changed 00012 * 00013 * @param isActive : true if it's activated, false otherwise 00014 */ 00015 public void active(boolean isActive); 00016 }