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