org.smart4j.plugin.search.bean.IndexDocument Maven / Gradle / Ivy
The newest version!
package org.smart4j.plugin.search.bean;
import java.util.ArrayList;
import java.util.List;
import org.smart4j.framework.core.bean.BaseBean;
public class IndexDocument extends BaseBean {
private List indexFieldList = new ArrayList();
public void addIndexField(IndexField indexField) {
if (indexField != null) {
indexFieldList.add(indexField);
}
}
public List getIndexFieldList() {
return indexFieldList;
}
}