comparison truffle/com.oracle.truffle.tools.debug.shell/src/com/oracle/truffle/tools/debug/shell/REPLMessage.java @ 22157:dc83cc1f94f2

Using fully qualified imports
author Jaroslav Tulach <jaroslav.tulach@oracle.com>
date Wed, 16 Sep 2015 11:33:22 +0200
parents 5bc7f7b867ab
children c3e397ce5941
comparison
equal deleted inserted replaced
22156:50056a161d7f 22157:dc83cc1f94f2
22 * or visit www.oracle.com if you need additional information or have any 22 * or visit www.oracle.com if you need additional information or have any
23 * questions. 23 * questions.
24 */ 24 */
25 package com.oracle.truffle.tools.debug.shell; 25 package com.oracle.truffle.tools.debug.shell;
26 26
27 import java.io.*; 27 import java.io.PrintStream;
28 import java.util.*; 28 import java.util.Map;
29 import java.util.Map.Entry; 29 import java.util.Map.Entry;
30 import java.util.Set;
31 import java.util.TreeMap;
30 32
31 /** 33 /**
32 * A message for communication between a Read-Eval-Print-Loop server associated with a language 34 * A message for communication between a Read-Eval-Print-Loop server associated with a language
33 * implementation and a possibly remote client. 35 * implementation and a possibly remote client.
34 * 36 *