1 package org.sapia.console.examples; 2 3 import org.sapia.console.CommandConsole; 4 5 6 10 public class HelloWorldConsole extends CommandConsole { 11 14 public HelloWorldConsole() { 15 super(new HelloWorldFactory()); 16 } 17 18 public static void main(String [] args) { 19 HelloWorldConsole console = new HelloWorldConsole(); 20 console.start(); 21 } 22 } 23 | Popular Tags |