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

com.example.Greeter Maven / Gradle / Ivy

There is a newer version: 2.9.0
Show newest version
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);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy