1 package org.testng.remote.strprotocol; 2 3 4 /** 5 * String based protocol main interface to be used with remote listeners. 6 * 7 * @author <a href='mailto:the_mindstorm[at]evolva[dot]ro'>Alexandru Popescu</a> 8 */ 9 public interface IStringMessage extends IMessage { getMessageAsString()10 String getMessageAsString(); 11 } 12