return type.equals(TreeSet.class);
}
public void marshal(Object source, HierarchicalStreamWriter writer, MarshallingContext context) {
TreeSet treeSet = (TreeSet) source;
treeMapConverter.marshalComparator(treeSet.comparator(), writer, context);
super.marshal(source, writer, context);
}
public Object unmarshal(HierarchicalStreamReader reader, UnmarshallingContext context) {
TreeSet result = null;