package node func (n *Node) SetString(v string) { n.stringValue = v } func (n *Node) GetString() string { return n.stringValue }