update doc

This commit is contained in:
kimchy 2010-06-05 21:59:42 +03:00
parent 88ba980f79
commit 57a21bedd2
11 changed files with 11 additions and 11 deletions

View File

@ -22,7 +22,7 @@ package org.elasticsearch.search.facets;
import org.elasticsearch.ElasticSearchException; import org.elasticsearch.ElasticSearchException;
/** /**
* @author kimchy (Shay Banon) * @author kimchy (shay.banon)
*/ */
public class FacetPhaseExecutionException extends ElasticSearchException { public class FacetPhaseExecutionException extends ElasticSearchException {

View File

@ -23,7 +23,7 @@ import org.elasticsearch.util.io.stream.Streamable;
import org.elasticsearch.util.xcontent.ToXContent; import org.elasticsearch.util.xcontent.ToXContent;
/** /**
* @author kimchy (Shay Banon) * @author kimchy (shay.banon)
*/ */
public interface InternalFacet extends Facet, Streamable, ToXContent { public interface InternalFacet extends Facet, Streamable, ToXContent {

View File

@ -23,7 +23,7 @@ import org.apache.lucene.search.Collector;
import org.elasticsearch.search.facets.Facet; import org.elasticsearch.search.facets.Facet;
/** /**
* @author kimchy (Shay Banon) * @author kimchy (shay.banon)
*/ */
public abstract class FacetCollector extends Collector { public abstract class FacetCollector extends Collector {

View File

@ -25,7 +25,7 @@ import org.elasticsearch.util.xcontent.XContentParser;
import java.io.IOException; import java.io.IOException;
/** /**
* @author kimchy (Shay Banon) * @author kimchy (shay.banon)
*/ */
public interface FacetCollectorParser { public interface FacetCollectorParser {

View File

@ -28,7 +28,7 @@ import org.elasticsearch.util.xcontent.builder.XContentBuilder;
import java.io.IOException; import java.io.IOException;
/** /**
* @author kimchy (Shay Banon) * @author kimchy (shay.banon)
*/ */
public class InternalQueryFacet implements QueryFacet, InternalFacet { public class InternalQueryFacet implements QueryFacet, InternalFacet {

View File

@ -30,7 +30,7 @@ import org.elasticsearch.util.lucene.docset.DocSets;
import java.io.IOException; import java.io.IOException;
/** /**
* @author kimchy (Shay Banon) * @author kimchy (shay.banon)
*/ */
public class QueryFacetCollector extends FacetCollector { public class QueryFacetCollector extends FacetCollector {

View File

@ -27,7 +27,7 @@ import org.elasticsearch.search.internal.SearchContext;
import org.elasticsearch.util.xcontent.XContentParser; import org.elasticsearch.util.xcontent.XContentParser;
/** /**
* @author kimchy (Shay Banon) * @author kimchy (shay.banon)
*/ */
public class QueryFacetCollectorParser implements FacetCollectorParser { public class QueryFacetCollectorParser implements FacetCollectorParser {

View File

@ -38,7 +38,7 @@ import java.util.Iterator;
import java.util.List; import java.util.List;
/** /**
* @author kimchy (Shay Banon) * @author kimchy (shay.banon)
*/ */
public class InternalTermsFacet implements InternalFacet, TermsFacet { public class InternalTermsFacet implements InternalFacet, TermsFacet {

View File

@ -40,7 +40,7 @@ import java.util.Deque;
import static org.elasticsearch.index.field.FieldDataOptions.*; import static org.elasticsearch.index.field.FieldDataOptions.*;
/** /**
* @author kimchy (Shay Banon) * @author kimchy (shay.banon)
*/ */
public class TermFacetCollector extends FacetCollector { public class TermFacetCollector extends FacetCollector {

View File

@ -27,7 +27,7 @@ import org.elasticsearch.util.xcontent.XContentParser;
import java.io.IOException; import java.io.IOException;
/** /**
* @author kimchy (Shay Banon) * @author kimchy (shay.banon)
*/ */
public class TermFacetCollectorParser implements FacetCollectorParser { public class TermFacetCollectorParser implements FacetCollectorParser {

View File

@ -26,7 +26,7 @@ import java.util.Comparator;
import java.util.List; import java.util.List;
/** /**
* @author kimchy (Shay Banon) * @author kimchy (shay.banon)
*/ */
public interface TermsFacet extends Facet, Iterable<TermsFacet.Entry> { public interface TermsFacet extends Facet, Iterable<TermsFacet.Entry> {