aboutsummaryrefslogtreecommitdiff
path: root/src/main/model/html/Node.java
blob: be217f6df9e0ded4d207a483b11b2341222b177d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package model.html;

/**
 * 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 data();
}