1 package com.thoughtworks.xstream.io;2 3 public interface HierarchicalStreamWriter {4 5 void startNode(String name);6 7 void addAttribute(String name, String value);8 9 void setValue(String text);10 11 void endNode();12 13 }14