00001 /* 00002 * ConnectionEventHandler.java 00003 * 00004 * Created on 14 giugno 2005, 22.50 00005 * 00006 * To change this template, choose Tools | Options and locate the template under 00007 * the Source Creation and Management node. Right-click the template and choose 00008 * Open. You can then make changes to the template in the Source Editor. 00009 */ 00010 00011 package org.jaebi.midlet.bt; 00012 00013 import javax.microedition.io.StreamConnection; 00014 00019 public interface ConnectionEventHandler { 00020 00021 public void connectionAdded(StreamConnection conn); 00022 00023 public void connectionRemoved(StreamConnection conn); 00024 00025 }