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

ch.inftec.ju.ee.test.AbstractTestBean Maven / Gradle / Ivy

There is a newer version: 6.1-S-5
Show newest version
package ch.inftec.ju.ee.test;

/**
 * Base class for simple test beans.
 * @author Martin
 *
 */
public class AbstractTestBean {
	/**
	 * Gets a greeting containing the specified name and the simple name of the class.
	 * @param name Name to greet
	 * @return String containing the simple name of the class and the specified name
	 */
	public String getGreeting(String name) {
		return String.format("%s says hello to %s", this.getClass().getSimpleName(), name);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy