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

com.seleniumtests.reporter.logger.StringInfo Maven / Gradle / Ivy

There is a newer version: 4.23.18
Show newest version
package com.seleniumtests.reporter.logger;

import com.seleniumtests.customexception.CustomSeleniumTestsException;
import com.seleniumtests.util.StringUtility;

public class StringInfo {
	
	public String getInfo() {
		return info;
	}

	protected String info;

	public StringInfo(String info) {
		this.info = info;
	}
	
	public String encode(String format) {
		try {
			return StringUtility.encodeString(info, format);
		} catch (CustomSeleniumTestsException e) {
			return info;
		}
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy