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

/**
 * yeah there's literally nothing here
 * i just need to establish that ElementNode and TextNode both inherit from Node
 */
public interface Node {
    // Return a representation of the Node
    public String getData();
}