INNER CODE UNIT · Java
nextLine
Guardsquare/proguard · base/src/main/java/proguard/ArgumentWordReader.java:62
protected String nextLine() throws IOException
{
return index < arguments.length ?
arguments[index++] :
null;
}
protected String lineLocationDescription()
{
return "argument number " + index;
}
/**
* Test application that prints out the individual words of
* the argument list.
*/