All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.thoughtworks.qdox.parser.expression.ElemValueListDef Maven / Gradle / Ivy

package com.thoughtworks.qdox.parser.expression;

import java.util.List;


public class ElemValueListDef implements ElemValueDef{

	private List valueList;
	
	public ElemValueListDef(List annoValueList) {
		this.valueList = annoValueList;
	}

    /** {@inheritDoc} */
	public  U transform(ElemValueTransformer transformer) {
		return transformer.transform(this);
	}

    /**
     * @return the valueList
     */
    public List getValueList()
    {
        return valueList;
    }
}