13 lines
396 B
Java
13 lines
396 B
Java
|
package org.simpleframework.xml.strategy;
|
||
|
|
||
|
import org.simpleframework.xml.stream.InputNode;
|
||
|
import org.simpleframework.xml.stream.NodeMap;
|
||
|
import org.simpleframework.xml.stream.OutputNode;
|
||
|
|
||
|
/* loaded from: classes6.dex */
|
||
|
public interface Visitor {
|
||
|
void read(Type type, NodeMap<InputNode> nodeMap) throws Exception;
|
||
|
|
||
|
void write(Type type, NodeMap<OutputNode> nodeMap) throws Exception;
|
||
|
}
|