blob: 4057fab83ff2c88128774669aa88bc744afad209 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
package model.util;
/**
* This Node represents an abstract relationship between ElementNode and TextNode.
* It's extremely helpful / necessary for Lists of arbitrary ElementNodes/TextNodes.
*/
public interface Node {
// Return a representation of the Node. Useful for debugging.
public String getData();
}
|