15 lines
378 B
Java
15 lines
378 B
Java
package com.thoughtworks.xstream.converters;
|
|
|
|
/* loaded from: classes.dex */
|
|
public interface UnmarshallingContext extends DataHolder {
|
|
void addCompletionCallback(Runnable runnable, int i);
|
|
|
|
Object convertAnother(Object obj, Class cls);
|
|
|
|
Object convertAnother(Object obj, Class cls, Converter converter);
|
|
|
|
Object currentObject();
|
|
|
|
Class getRequiredType();
|
|
}
|