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