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

com.seleniumtests.reporter.info.Info Maven / Gradle / Ivy

package com.seleniumtests.reporter.info;

import com.seleniumtests.util.logging.SeleniumRobotLogger;
import org.apache.log4j.Logger;

public abstract class Info {

	protected static final Logger logger = SeleniumRobotLogger.getLogger(Info.class);

	public String getInfo() {
		return description;
	}
	
	protected String description;
	
	protected Info(String info) {
		this.description = info;
	}
	
	public abstract String encode(String format);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy