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

okw.log.log2html.LogPrint Maven / Gradle / Ivy

There is a newer version: 0.2.44
Show newest version
package okw.log.log2html;

public class LogPrint extends LogBase
{

	public LogPrint(LogBase fpParent, String fpsInfo)
	{
		Info = fpsInfo;
		myID = AllCount;
		this.setParent(fpParent);		
	}
	
	protected String getResult()
	{
		StringBuilder sbResult = new StringBuilder();
		
		String lvsIndention = this.getLevelIndention();
		
		sbResult.append( lvsIndention + myIndentionBase + "

" + this.Info + "

\n" ); return sbResult.toString(); } protected void SetFail() { } protected void SetPass() { } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy