KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > portal > format > parser > ParseEventHandler


1 /*****************************************
2  * *
3  * JBoss Portal: The OpenSource Portal *
4  * *
5  * Distributable under LGPL license. *
6  * See terms of license at gnu.org. *
7  * *
8  *****************************************/

9
10 package org.jboss.portal.format.parser;
11
12
13 /**
14  * Implementors want to receive events produced by a parser.
15  */

16 public interface ParseEventHandler
17 {
18    void handle(ParseEvent event);
19 }
20
Popular Tags