1 package com.thoughtworks.xstream.converters;2 3 public interface UnmarshallingContext {4 5 Object convertAnother(Object current, Class type);6 7 Object currentObject();8 9 Class getRequiredType();10 11 }12