package e4s.tutorial;
import e4s.html.BODY;
import e4s.html.HTML;
import e4s.html.E4Method;
import e4s.servlet.E4ModuleImplementation;
import e4s.servlet.E4ServletImplementation_Intf;
/**
* Using the BODY tag
*
* {@tutorial Example_BODY}
*/
public class Example_BODY extends E4ModuleImplementation
{
public static E4Method start = null;
public void start( HTML html )
{
BODY body = html.BODY();
body.println("This text is in the body");
html.println("This text is not");
// Can you see? The order is not that important, it is the structure of the DOM!
}
}