Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: fc735909e6c0b591dfc24e59d2b70c6102b2cd48 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
package org.eclipse.net4j.util.lifecycle;

/**
 * @author Eike Stepper
 */
public interface LifecycleListener
{
  public void notifyLifecycleAboutToActivate(LifecycleNotifier notifier);

  public void notifyLifecycleActivated(LifecycleNotifier notifier);

  public void notifyLifecycleDeactivating(LifecycleNotifier notifier);
}

Back to the top