001    /*
002     * Created on Feb 8, 2004
003    */
004    package net.sf.jolene.dom;
005    
006    import net.sf.jolene.constants.Tags;
007    
008    
009    /**
010     * An image in a html document.
011     *
012     * @author Dan Howard
013     */
014    public final class Image extends HTMLElement {
015    
016        /**
017         * Default constructor.
018         */
019        public Image() {
020            tag = Tags.img;
021        }
022    
023    
024        /**
025         * Returns a clone of the image object.
026         *
027         * @return Image object.
028         */
029        @Override
030        public Image clone() {
031            return (Image) super.clone();
032        }
033    }