aboutsummaryrefslogtreecommitdiff
path: root/src/main/model/html/TextNode.java
blob: 29f27917a86d77c9cec821955ed8433861795788 (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 data() {
        return text();
    }
}