Package com.liferay.faces.util.text

Examples of com.liferay.faces.util.text.RichText


        richTextType = RichText.Type.HTML;
      }

      RichTextFactory richTextFactory = (RichTextFactory) FactoryExtensionFinder.getFactory(
          RichTextFactory.class);
      RichText richText = richTextFactory.getRichText(richTextType, newValue.toString());
      int length = richText.getPlainTextLength();
      int minimum = getMinPlainTextChars();
      int maximum = getMaxPlainTextChars();

      logger.debug("length=[{0}] minimum=[{1}] maximum=[{2}]", length, minimum, maximum);
View Full Code Here

TOP

Related Classes of com.liferay.faces.util.text.RichText

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.