Package org.jfree.fonts.text.classifier

Examples of org.jfree.fonts.text.classifier.LinebreakClassificationProducer


  protected GlyphClassificationProducer createGlyphClassifier(final LayoutContext layoutContext)
  {
    final CSSValue wsColl = layoutContext.getValue(TextStyleKeys.WHITE_SPACE_COLLAPSE);
    if (WhitespaceCollapse.PRESERVE.equals(wsColl))
    {
      return new LinebreakClassificationProducer();
    }
    return new WhitespaceClassificationProducer();
  }
View Full Code Here


    if (WhitespaceCollapse.PRESERVE.equals(wsColl))

    {

      return new LinebreakClassificationProducer();

    }

    return new WhitespaceClassificationProducer();
View Full Code Here

TOP

Related Classes of org.jfree.fonts.text.classifier.LinebreakClassificationProducer

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.