All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ats.generator.variables.ParameterValue Maven / Gradle / Ivy

The newest version!
package com.ats.generator.variables;

import java.util.regex.Matcher;

public class ParameterValue extends BaseValue {

	public ParameterValue(Matcher m) {
		super(m);

		try {
			Integer.parseInt(codeValue);
		}catch (NumberFormatException e) {
			codeValue = "\"" + codeValue + "\"";
		}
	}

	public String getValue() {
		return value;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy