package e4s.tutorial; import e4s.html.*; import e4s.servlet.*; /** * No tutorial without an Hello World example. Start here. * * {@tutorial Example_HelloWorld} */ public class Example_HelloWorld extends E4ModuleImplementation { public static E4Method helloWorld = null; public void helloWorld( HTML html ) { html.setTitle("ELEMENT4SOLUTION Example"); TABLE table = html.BODY().TABLE(); table.setBorder(); table.TR().TD().print("Hello"); table.TR().TD().print("World"); } }