001/* 002 * To change this template, choose Tools | Templates 003 * and open the template in the editor. 004 */ 005package jmri.jmrit.withrottle; 006 007/** 008 * @author Brett Hoffman Copyright (C) 2010 009 */ 010public interface ControllerInterface { 011 012 void sendPacketToDevice(String message); 013 014 void sendAlertMessage(String message); 015 016 void sendInfoMessage(String message); 017 018}