Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: ExampleSupport => TutorialSupport as per comment.

...

Code Block
formatJava
titleHelloWorld.java
borderStylesolid
package tutorial;

public class HelloWorld extends ExampleSupportTutorialSupport {

    public static final String MESSAGE = "HelloWorld.message";

    public String execute() throws Exception {
        setMessage(getText(MESSAGE));
        return SUCCESS;
    }

  // ... 
}

...