01: package com.xoetrope.carousel.visualizer;
02:
03: import net.xoetrope.xui.data.XModel;
04:
05: public abstract class VisualiserDebuggerModel extends XModel {
06: /**
07: * Removes the child at the specified path.
08: * @param path the location of the child which is to be removed
09: */
10: public abstract void removeChild(String path);
11:
12: /**
13: * Removes the specified child node
14: * @param child the model to be removed
15: */
16: public abstract void removeChild(XModel child);
17:
18: /**
19: * Gets the "string" representation of this node
20: * @return String
21: */
22: public abstract String getNodeString();
23:
24: }
|