blob: c5851ae147c5cf646a05d477925204a430cdd0b3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 IBM Corporation and Others
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Daisuke SATO - initial API and implementation
*******************************************************************************/
package org.eclipse.actf.model.dom.dombycom;
import org.w3c.dom.Element;
/**
* The IImageElement interface defines the methods to be implemented by the
* image element.
*/
public interface IImageElement extends INodeEx {
/**
* @return the map element specified in the image element as a attribute.
*/
public Element getMap();
/**
* @return whether the element has usemap attribute or not.
*/
public boolean hasUsemap();
}