Package net.sf.urlchecker.events

Package class diagram package net.sf.urlchecker.events
Provides all the Classes and interfaces to be used forEvent handling in the urlchecker library.

See:
          Description

Interface Summary
ChainEvent The Interface ChainEvent.
ChainListener This interface allows Listeners on events during the life of a chain of commands.
 

Class Summary
BasicChainEvent The Class BasicChainEvent.
 

Enum Summary
EventTypes The Enum EventTypes.
 

Package net.sf.urlchecker.events Description

Provides all the Classes and interfaces to be used forEvent handling in the urlchecker library.

Use

You can use this package by
        
                ChainListener listener = new ChainListener(){

                        public void fireEvent(ChainEvent event){
                                //do something with the event
                                ....
                        }
                }

                Command resolver = new URLMatchCommand();
                resolver.add(listener);
                ...
                //continue and put the resolver to work to watch the listen being fired
        
  



Copyright © 2010 Nikolaos Georgosopoulos. All Rights Reserved.