Introduction
Here is the source code for Main.java
Source
//package com.java2s;
//License from project: Apache License
public class Main {
private static final String ARG_ID_FORMAT = "<Arg-%s>";
public static String getArgId(String arg) {
return String.format(ARG_ID_FORMAT, arg);
}
}