/*
* Copyright (C) 2007, 2009 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 26. June 2007 by Joerg Schaible
*/
package com.thoughtworks.xstream.tools.model.targets;
import com.thoughtworks.xstream.tools.benchmark.Target;
import com.thoughtworks.xstream.tools.benchmark.model.A100Fields;
import java.util.ArrayList;
import java.util.List;
/**
* A Target for a 100 fields class.
*
* @author Jörg Schaible
* @see com.thoughtworks.xstream.tools.benchmark.Harness
* @see Target
*/
public class FieldReflection extends AbstractReflectionTarget {
public FieldReflection() {
super(new ArrayList());
List list = (List)target();
for(int i = 0; i < 100; ++i) {
Object o = new A100Fields();
fill(o);
list.add(o);
}
}
public String toString() {
return "Field Target";
}
}