• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package org.testng.remote.strprotocol;
2 
3 import java.io.Serializable;
4 
5 
6 /**
7  * Marker interface for messages exchanged between RemoteTestNG and a client.
8  *
9  * @author Cedric Beust <cedric@beust.com>
10  */
11 public interface IMessage extends Serializable {
12 }
13