jimu-decompiled/sources/com/thoughtworks/xstream/io/naming/NameCoderWrapper.java
2025-05-13 19:24:51 +02:00

31 lines
908 B
Java

package com.thoughtworks.xstream.io.naming;
/* loaded from: classes.dex */
public class NameCoderWrapper implements NameCoder {
private final NameCoder wrapped;
public NameCoderWrapper(NameCoder nameCoder) {
this.wrapped = nameCoder;
}
@Override // com.thoughtworks.xstream.io.naming.NameCoder
public String decodeAttribute(String str) {
return this.wrapped.decodeAttribute(str);
}
@Override // com.thoughtworks.xstream.io.naming.NameCoder
public String decodeNode(String str) {
return this.wrapped.decodeNode(str);
}
@Override // com.thoughtworks.xstream.io.naming.NameCoder
public String encodeAttribute(String str) {
return this.wrapped.encodeAttribute(str);
}
@Override // com.thoughtworks.xstream.io.naming.NameCoder
public String encodeNode(String str) {
return this.wrapped.encodeNode(str);
}
}