Package com.gentics.cr.lucene.indexer.transformer.doc

Examples of com.gentics.cr.lucene.indexer.transformer.doc.RTFContentTransformer


    config = new GenericConfiguration();
    config.set("attribute", "binarycontent");
  }

  public void testTransformer() throws Exception {
    ContentTransformer t = new RTFContentTransformer(config);
    t.processBean(bean);
    String s = (String) bean.get("binarycontent");

    assertTrue("testtext\n".equals(s));
  }
View Full Code Here

TOP

Related Classes of com.gentics.cr.lucene.indexer.transformer.doc.RTFContentTransformer

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.