aboutsummaryrefslogtreecommitdiff
path: root/src/main/model/html/TextNode.java
blob: cf0078b9ae1f378bb894f10335800e906b831535 (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
package model.html;

import model.util.Node;

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();
    }
}