Show Term.java syntax highlighted
/*
* Created on 16/09/2004
*
*/
package com.kneobase.search.query;
/**
* @author Ernesto De Santis
*
*/
public class Term implements Cloneable{
private String field;
private String text;
public Term(String f, String t){
field = f;
text = t;
}
public String field() {
return field;
}
public String text() {
return text;
}
}
See more files for this project here