01: /*
02: * StatusInfo.java
03: *
04: * Created on 08 February 2007, 15:29
05: *
06: * To change this template, choose Tools | Template Manager
07: * and open the template in the editor.
08: */
09:
10: package com.xoetrope.svg;
11:
12: import net.xoetrope.xml.XmlElement;
13:
14: /**
15: *
16: *
17: * <p> Copyright (c) Xoetrope Ltd., 2001-2006, This software is licensed under
18: * the GNU Public License (GPL), please see license.txt for more details. If
19: * you make commercial use of this software you must purchase a commercial
20: * license from Xoetrope.</p>
21: * <p> $Revision: 1.2 $</p>
22: */
23: public interface XHotSpotInfo {
24: /**
25: * Method used to pass an extracted node to an implementing class.
26: * @param node the passed <CODE>XmlElement</CODE>.
27: */
28: public void set(XmlElement node);
29: }
|