org.rajivprab.cava.WebUtilc Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cava Show documentation
Show all versions of cava Show documentation
A library that enables users to write minimal, clean and simple Java
package org.rajivprab.cava;
/**
* Created by rajivprab on 7/20/17.
*/
public class WebUtilc {
public static String getHtmlLink(String text, String link) {
return String.format("%s", link, text);
}
}