aboutsummaryrefslogtreecommitdiff
path: root/src/main/model/html/TextNode.java
blob: 464180f74e9d4a875956474ffc90c8855712f633 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package model.html;

/**
 * This TextNode class represents raw text, with no nested tags.
 */
public class TextNode implements Node {
    private String text = "";

    /**
     * EFFECTS: Creates a new TextNode from the provided String value.
     * MODIFIES: this
     */
    public TextNode(String text) {
        this.text = text;
    }

    public String getText() {
        return this.text;
    }

    // We implement this method for easy debugging.
    public String getData() {
        return getText();
    }
}