aboutsummaryrefslogtreecommitdiff
path: root/src/main/model/html/Node.java
blob: 9a846eeba1991f3232379cd53c0f077e033bf0ac (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 getData();
}