public class TextNode extends ConstNode
表示语法树中的字符串字面量节点。
  • 构造器详细资料

    • TextNode

      public TextNode(String value)
      string 创建一个新的 TextNode
      参数:
      value - 字符串值。该值不能为 nullNothing)。
  • 方法详细资料

    • getValue

      public final String getValue()
      获取该节点的文本。该值不能为 null (Nothing)。
    • setValue

      public final void setValue(String value)
      设置该节点的文本。该值不能为 null (Nothing)。