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

Using fully qualified imports
author Jaroslav Tulach <jaroslav.tulach@oracle.com>
date Wed, 16 Sep 2015 11:33:22 +0200
parents 9c8c0937da41
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.client; 25 package com.oracle.truffle.tools.debug.shell.client;
26 26
27 import java.io.*; 27 import com.oracle.truffle.api.source.Source;
28 import java.util.*; 28 import com.oracle.truffle.tools.debug.shell.REPLMessage;
29 29 import java.io.IOException;
30 import com.oracle.truffle.api.source.*; 30 import java.util.Arrays;
31 import com.oracle.truffle.tools.debug.shell.*; 31 import java.util.List;
32 32
33 // TODO (mlvdv) write a real command line parser 33 // TODO (mlvdv) write a real command line parser
34 public abstract class REPLRemoteCommand extends REPLCommand { 34 public abstract class REPLRemoteCommand extends REPLCommand {
35 35
36 public REPLRemoteCommand(String command, String abbreviation, String description) { 36 public REPLRemoteCommand(String command, String abbreviation, String description) {