Package org.foafrealm.mfb.logic

Examples of org.foafrealm.mfb.logic.TextFacet


   */
  @SuppressWarnings("unchecked")
  @Override
  public String getXmlContent(HttpServletRequest request, HttpServletResponse response)
      throws Exception {
    TextFacet textfacet = MultifacetedBrowsing.getMfb(request).getTextFacetById(request.getParameter("facetId"));
    AjaxXmlBuilder builder = new AjaxXmlBuilder();
    Collection<String> values = textfacet.listMatching(request.getParameter("substring"));
   
    for(String key : values){
      builder.addItem(key, key);
    }
   
View Full Code Here

TOP

Related Classes of org.foafrealm.mfb.logic.TextFacet

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.