1 package com.thoughtworks.xstream.io; 2 3 import com.thoughtworks.xstream.converters.ErrorWriter; 4 5 public interface HierarchicalStreamReader { 6 7 boolean hasMoreChildren(); 8 9 void moveDown(); 10 11 void moveUp(); 12 13 String getNodeName(); 14 15 String getValue(); 16 17 String getAttribute(String name); 18 19 Object peekUnderlyingNode(); 20 21 void appendErrors(ErrorWriter errorWriter); 22 23 } 24 | Popular Tags |