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

/**
 * @author Eike Stepper
 */
public interface LifecycleNotifier extends Lifecycle.Introspection
{
  public void addLifecycleListener(LifecycleListener listener);

  public void removeLifecycleListener(LifecycleListener listener);
}

Back to the top