01: package net.xoetrope.xui;
02:
03: import net.xoetrope.xui.data.XModel;
04:
05: /**
06: * Generic interface for components that use an XModel instance. Known instances
07: * include XTable
08: * <p>Copyright (c) Xoetrope Ltd., 2002-2003</p>
09: * <p>License: see license.txt</p>
10: * $Revision: 1.13 $
11: */
12: public interface XModelHolder {
13: /**
14: * Set the model data.
15: * @param m the model node containing the data to be used by the component
16: */
17: public void setModel(XModel m);
18: }
|