org.ungoverned.moduleloader.search
Interface ValidationListener

All Superinterfaces:
java.util.EventListener

public interface ValidationListener
extends java.util.EventListener

This is an event listener interface for listening to validation events that are generated by the ImportSearchPolicy. Events are fired when a module is validated and when it is invalidated.

See Also:
ImportSearchPolicy

Method Summary
 void moduleInvalidated(ModuleEvent event)
          This is an event callback method that indicates that a module was invalidated.
 void moduleValidated(ModuleEvent event)
          This is an event callback method that indicates that a module was validated.
 

Method Detail

moduleValidated

void moduleValidated(ModuleEvent event)
This is an event callback method that indicates that a module was validated.

Parameters:
event - the module event containing the event data.

moduleInvalidated

void moduleInvalidated(ModuleEvent event)
This is an event callback method that indicates that a module was invalidated.

Parameters:
event - the module event containing the event data.