Package org.apache.lucene.facet.enhancements

Examples of org.apache.lucene.facet.enhancements.CategoryEnhancementDummy2


    // check retainable properties
    List<Class<? extends CategoryProperty>> retainableProps = params
        .getRetainableProperties();
    assertNull("Unexpected content in retainable list", retainableProps);

    params.addCategoryEnhancements(new CategoryEnhancementDummy2());

    List<CategoryEnhancement> enhancements = params
        .getCategoryEnhancements();

    assertEquals("Wrong number of enhancements", 2, enhancements.size());
View Full Code Here

TOP

Related Classes of org.apache.lucene.facet.enhancements.CategoryEnhancementDummy2

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.