1 11 12 package org.eclipse.osgi.framework.console; 13 14 import java.util.Dictionary ; 15 import org.osgi.framework.Bundle; 16 17 26 public interface CommandInterpreter { 27 33 public String nextArgument(); 34 35 41 public Object execute(String cmd); 42 43 48 public void print(Object o); 49 50 53 public void println(); 54 55 66 public void println(Object o); 67 68 72 public void printStackTrace(Throwable t); 73 74 80 public void printDictionary(Dictionary dic, String title); 81 82 88 public void printBundleResource(Bundle bundle, String resource); 89 } 90 91 | Popular Tags |