1 package net.suberic.pooka; 2 3 public interface NetworkConnectionListener { 4 /** 5 * Notifies this component that the state of a network connection has 6 * changed. 7 */ 8 public void connectionStatusChanged(NetworkConnection connection, int newStatus); 9 } 10