prefuse.activity
Class ActivityAdapter

java.lang.Object
  extended by prefuse.activity.ActivityAdapter
All Implemented Interfaces:
java.util.EventListener, ActivityListener
Direct Known Subclasses:
ActivityManager.ScheduleAfterActivity

public class ActivityAdapter
extends java.lang.Object
implements ActivityListener

Adapter class for ActivityListeners. Provides empty implementations of ActivityListener routines.

Version:
1.0
Author:
jeffrey heer

Constructor Summary
ActivityAdapter()
           
 
Method Summary
 void activityCancelled(Activity a)
          Called when an activity is cancelled.
 void activityFinished(Activity a)
          Called when an activity finishes.
 void activityScheduled(Activity a)
          Called when an activity has been scheduled with an ActivityManager
 void activityStarted(Activity a)
          Called when an activity is first started.
 void activityStepped(Activity a)
          Called when an activity is stepped.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ActivityAdapter

public ActivityAdapter()
Method Detail

activityScheduled

public void activityScheduled(Activity a)
Description copied from interface: ActivityListener
Called when an activity has been scheduled with an ActivityManager

Specified by:
activityScheduled in interface ActivityListener
Parameters:
a - the scheduled Activity
See Also:
ActivityListener.activityScheduled(prefuse.activity.Activity)

activityStarted

public void activityStarted(Activity a)
Description copied from interface: ActivityListener
Called when an activity is first started.

Specified by:
activityStarted in interface ActivityListener
Parameters:
a - the started Activity
See Also:
ActivityListener.activityStarted(prefuse.activity.Activity)

activityStepped

public void activityStepped(Activity a)
Description copied from interface: ActivityListener
Called when an activity is stepped.

Specified by:
activityStepped in interface ActivityListener
Parameters:
a - the stepped Activity
See Also:
ActivityListener.activityStepped(prefuse.activity.Activity)

activityFinished

public void activityFinished(Activity a)
Description copied from interface: ActivityListener
Called when an activity finishes.

Specified by:
activityFinished in interface ActivityListener
Parameters:
a - the finished Activity
See Also:
ActivityListener.activityFinished(prefuse.activity.Activity)

activityCancelled

public void activityCancelled(Activity a)
Description copied from interface: ActivityListener
Called when an activity is cancelled.

Specified by:
activityCancelled in interface ActivityListener
Parameters:
a - the cancelled Activity
See Also:
ActivityListener.activityCancelled(prefuse.activity.Activity)


Copyright © 2007 Regents of the University of California