MCPcopy Index your code
hub / github.com/apache/tomcat / nextArg

Method nextArg

java/org/apache/jasper/JspC.java:1647–1653  ·  view source on GitHub ↗

Returns the next command-line argument. @return the next argument, or null if no more arguments

()

Source from the content-addressed store, hash-verified

1645 * @return the next argument, or {@code null} if no more arguments
1646 */
1647 protected String nextArg() {
1648 if ((argPos >= args.length) || (fullstop = SWITCH_FULL_STOP.equals(args[argPos]))) {
1649 return null;
1650 } else {
1651 return args[argPos++];
1652 }
1653 }
1654
1655 /**
1656 * Returns the next file argument from the command-line.

Callers 1

setArgsMethod · 0.95

Calls 1

equalsMethod · 0.65

Tested by

no test coverage detected