public class ExampleCode {

   public ExampleCode(int value) {
      this.value = value;
   }

   /**
    * Returns the value of x.
    This value is
    * computationally expensive.
    * <ul>
    * <li>one
    * <li>two
    * <li>three
    * </ul>
    * @param one The first param.
    * @param two The second one.
    * @unknown What is this?
    * @param three The third one.
    * @return The answer.
    */
   public String getX() {
      String str;
      
      return "Hello world!";
   }

   