com.thoughtworks.xstream.converters.SingleValueConverterWrapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.apache.servicemix.bundles.xstream
Show all versions of org.apache.servicemix.bundles.xstream
This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.
/*
* Copyright (C) 2006, 2007, 2011, 2014 XStream Committers.
* All rights reserved.
*
* The software in this package is published under the terms of the BSD
* style license a copy of which has been included with this distribution in
* the LICENSE.txt file.
*
* Created on 20. February 2006 by Mauro Talevi
*/
package com.thoughtworks.xstream.converters;
import com.thoughtworks.xstream.io.HierarchicalStreamReader;
import com.thoughtworks.xstream.io.HierarchicalStreamWriter;
/**
* Wrapper to convert a {@link com.thoughtworks.xstream.converters.SingleValueConverter} into a
* {@link com.thoughtworks.xstream.converters.Converter}.
*
* @author Jörg Schaible
* @see com.thoughtworks.xstream.converters.Converter
* @see com.thoughtworks.xstream.converters.SingleValueConverter
*/
public class SingleValueConverterWrapper implements Converter, SingleValueConverter, ErrorReporter {
private final SingleValueConverter wrapped;
public SingleValueConverterWrapper(SingleValueConverter wrapped) {
this.wrapped = wrapped;
}
public boolean canConvert(Class type) {
return wrapped.canConvert(type);
}
public String toString(Object obj) {
return wrapped.toString(obj);
}
public Object fromString(String str) {
return wrapped.fromString(str);
}
public void marshal(Object source, HierarchicalStreamWriter writer, MarshallingContext context) {
writer.setValue(toString(source));
}
public Object unmarshal(HierarchicalStreamReader reader, UnmarshallingContext context) {
return fromString(reader.getValue());
}
public void appendErrors(ErrorWriter errorWriter) {
errorWriter.add("wrapped-converter", wrapped == null ? "(null)" : wrapped.getClass().getName());
if (wrapped instanceof ErrorReporter) {
((ErrorReporter)wrapped).appendErrors(errorWriter);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy