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

def.sprintf.Globals Maven / Gradle / Ivy

There is a newer version: 2.2.1
Show newest version
package def.sprintf;

public class Globals {

	/**
	 * Example: sprintf(
	 * "The first 4 letters of the English alphabet are: %s, %s, %s and %s",
	 * "a", "b", "c", "d")
	 */
	public static native String sprintf(String format, Object... args);

	/**
	 * Example: vprintf(
	 * "The first 4 letters of the English alphabet are: %s, %s, %s and %s", new
	 * String[] {"a", "b", "c", "d"})
	 */
	public static native String vprintf(String format, Object[] args);

	

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy