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

net.anotheria.moskito.webui.producers.api.StatLineAO Maven / Gradle / Ivy

There is a newer version: 4.0.3
Show newest version
package net.anotheria.moskito.webui.producers.api;

import net.anotheria.moskito.core.decorators.value.StatValueAO;

import java.io.Serializable;
import java.util.List;

/**
 * TODO comment this class
 *
 * @author lrosenberg
 * @since 25.03.14 15:37
 */
public class StatLineAO implements Serializable{
	/**
	 * SerialVersionUID.
	 */
	private static final long serialVersionUID = 3257563296541147803L;

	private String statName;
	private List values;

	public String getStatName() {
		return statName;
	}

	public void setStatName(String statName) {
		this.statName = statName;
	}

	public List getValues() {
		return values;
	}

	public void setValues(List values) {
		this.values = values;
	}

	@Override
	public String toString() {
		return "StatLineAO{" +
				"statName='" + statName + '\'' +
				", values=" + values +
				'}';
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy