package org.apache.commons.betwixt.strategy;

/**
 * <code>Element</code> is a sample bean for use with test cases
 *
 * @author <a href="mailto:tima@intalio.com">Tim Anderson</a>
 * @version $Revision: 1.2 $
 */
public class Element {

    private String value;

    public Element() {
    }

    public Element(String value) {
        this.value = value;
    }

    public String getValue() {
        return value;
    }

    public void setValue(String value) {
        this.value = value;
    }
    
}
