com.example.Greeter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of single-module-project Show documentation
Show all versions of single-module-project Show documentation
Sample single module Maven project with a working, deployable site.
package com.example;
/**
* This is a class.
*/
public class Greeter {
/**
* This is a constructor.
*/
public Greeter() {
}
//TODO: Add javadoc comment
public String greet(String someone) {
return String.format("Hello, %s!", someone);
}
}