MCPcopy Create free account
hub / github.com/IBM/Project_CodeNet / Args

Class Args

tools/spt-generator/src/com/ibm/ai4code/parser/commons/Args.java:3–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1package com.ibm.ai4code.parser.commons;
2import org.apache.commons.cli.*;
3public class Args {
4 public static boolean MULTI = false; // use "single" g4 file, or use "multi" g4 file, where we have different toke types
5 public static void parse(CommandLine cmd) {
6 if(cmd.hasOption("multi")) {
7 MULTI = true;
8 }
9 }
10
11}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected