Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 91d71032fb766113217157d59eb1d7364c64dfef (plain) (blame)
1
2
3
4
5
6
7
8
9
package org.eclipse.net4j.util.registry;

/**
 * @author Eike Stepper
 */
public interface IRegistryListener<ID, E>
{
  public void notifyRegistryEvent(IRegistryEvent<ID, E> event);
}

Back to the top