KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com4j > tlbimp > ErrorListener


1 package com4j.tlbimp;
2
3 /**
4  * @author Kohsuke Kawaguchi (kk@kohsuke.org)
5  */

6 public interface ErrorListener {
7     void error( BindingException e );
8
9     void warning( String JavaDoc message );
10 }
11
Popular Tags