/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package org.jaxygen.netservice.html; /** * * @author Artur Keska */ public class HTMLBody extends BasicHTMLElement { public HTMLBody() { super("BODY"); } public HTMLBody(final String id) { super("BODY", id); } }