core
Class Input

java.lang.Object
  extended by core.Input

public class Input
extends java.lang.Object

Input Encapsulates Wormwood's input of raw data, such as strings. Programmers should use Input.nextLine() instead of the Scanner class directly.


Constructor Summary
Input()
           
 
Method Summary
static int nextInt()
          Gets the next integer from the keyboard.
static java.lang.String nextLine()
          Gets the next line of input from the keyboard.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Input

public Input()
Method Detail

nextLine

public static java.lang.String nextLine()
Gets the next line of input from the keyboard.


nextInt

public static int nextInt()
Gets the next integer from the keyboard.