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

org.atemsource.atem.utility.doc.html.TypeCodeToUrlConverter Maven / Gradle / Ivy

package org.atemsource.atem.utility.doc.html;

public class TypeCodeToUrlConverter
{
	private String basePath = "doc";

	public String getBasePath()
	{
		return basePath;
	}

	public String getUrl(String typeCode)
	{
		return "/" + basePath + "/" + typeCode.replace('.', '/') + ".html";
	}

	public void setBasePath(String basePath)
	{
		this.basePath = basePath;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy