001package edu.wpi.first.wpilibj.tables; 002 003/** 004 * A listener that listens for connection changes in a {@link IRemote} object 005 * 006 * @author Mitchell 007 * 008 */ 009public interface IRemoteConnectionListener { 010 /** 011 * Called when an IRemote is connected 012 * @param remote the object that connected 013 */ 014 public void connected(IRemote remote); 015 /** 016 * Called when an IRemote is disconnected 017 * @param remote the object that disconnected 018 */ 019 public void disconnected(IRemote remote); 020}