01: package net.xoetrope.xui;
02:
03: import java.io.Reader;
04: import net.xoetrope.xml.XmlElement;
05:
06: /**
07: * <p>An interface for setting meta information content</p>
08: * <p>Copyright (c) Xoetrope Ltd., 2002-2003</p>
09: * <p>License: see license.txt</p>
10: * $Revision: 1.10 $
11: */
12: public interface XMetaContentHolder {
13: /**
14: * Set the content of the component with the meta content
15: * @param source the location from which the xml was obtained
16: * @param srcReader the XML tree containing the meta content
17: */
18: public void setContent(String source, XmlElement srcReader);
19: }
|