package org.compass.core.test.termfreqvector.simple1; /** * @author kimchy */ public class A { Long id; String value1; String value2; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getValue1() { return value1; } public void setValue1(String value1) { this.value1 = value1; } public String getValue2() { return value2; } public void setValue2(String value2) { this.value2 = value2; } }