|
|||||||||||||||||||
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover | |||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
Converter.java | - | - | - | - |
|
1 |
package com.thoughtworks.xstream.converters;
|
|
2 |
|
|
3 |
import com.thoughtworks.xstream.objecttree.ObjectTree;
|
|
4 |
import com.thoughtworks.xstream.xml.XMLReader;
|
|
5 |
import com.thoughtworks.xstream.xml.XMLWriter;
|
|
6 |
|
|
7 |
public interface Converter { |
|
8 |
|
|
9 |
boolean canConvert(Class type);
|
|
10 |
|
|
11 |
void toXML(ObjectTree objectGraph, XMLWriter xmlWriter, ConverterLookup converterLookup);
|
|
12 |
|
|
13 |
void fromXML(ObjectTree objectGraph, XMLReader xmlReader, ConverterLookup converterLookup, Class requiredType);
|
|
14 |
} |
|
15 |
|
|