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

/**
 * This TextNode class represents raw text, with no nested tags.
 */
public record TextNode(String text) implements Node {
    // We implement this method for easy debugging.
    public String getData() {
        return text();
    }
}