/*
* Copyright (C) 2008, 2009, 2011 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 01. January 2008 by Joerg Schaible
*/
package com.thoughtworks.xstream.tools.benchmark.targets;
import com.thoughtworks.xstream.tools.benchmark.Target;
import com.thoughtworks.xstream.tools.benchmark.model.SerializableFive;
import com.thoughtworks.xstream.tools.benchmark.model.SerializableOne;
import java.util.ArrayList;
import java.util.List;
/**
* Target containing basic types using the SerializableConverter.
*
* @author Jörg Schaible
* @since 1.4
*/
public class SerializableTarget implements Target {
private List list;
public SerializableTarget() {
list = new ArrayList();
for (int i = 0; i < 5; ++i) {
list.add(new SerializableOne(Integer.toString(i)));
}
list.add(new SerializableFive("1", 2, true, '4', new StringBuffer("5")));
}
public boolean isEqual(Object other) {
return list.equals(other);
}
public Object target() {
return list;
}
public String toString() {
return "Serializable types";
}
}