HomeSort by relevance Sort by last modified time
    Searched refs:HtmlTree (Results 1 - 7 of 7) sorted by null

  /packages/apps/UnifiedEmail/tests/src/com/android/mail/utils/
NotificationUtilsTest.java 22 import com.google.android.mail.common.html.parser.HtmlTree;
38 final HtmlTree htmlTree = Utils.getHtmlTree(html);
39 htmlTree.setPlainTextConverterFactory(new HtmlTree.PlainTextConverterFactory() {
41 public HtmlTree.PlainTextConverter createInstance() {
46 final String resultText = htmlTree.getPlainText();
65 final HtmlTree htmlTree = Utils.getHtmlTree(html);
66 htmlTree.setPlainTextConverterFactory(new HtmlTree.PlainTextConverterFactory()
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/lib/html/parser/
HtmlTreeBuilder.java 29 * HtmlTreeBuilder builds a well-formed HtmlTree.
31 * @see HtmlTree
41 private HtmlTree tree;
45 public HtmlTree getTree() {
52 tree = new HtmlTree();
HtmlTree.java 32 * HtmlTree represents a parsed and well-formed html text, it provides
48 public class HtmlTree {
57 * the contents of an {@link HtmlTree} to plain text.
63 * An interface for an object which converts a single HtmlTree into
117 private static final Logger logger = Logger.getLogger(HtmlTree.class.getName());
121 /** HtmlTree can only be constructed from this package */
122 HtmlTree() {
802 * Contains the logic for converting the contents of one HtmlTree into
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
HtmlTreeBuilder.java 29 * HtmlTreeBuilder builds a well-formed HtmlTree.
31 * @see HtmlTree
41 private HtmlTree tree;
45 public HtmlTree getTree() {
52 tree = new HtmlTree();
HtmlTree.java 33 * HtmlTree represents a parsed and well-formed html text, it provides
49 public class HtmlTree {
60 * the contents of an {@link HtmlTree} to plain text.
66 * An interface for an object which converts a single HtmlTree into
121 private static final Logger logger = Logger.getLogger(HtmlTree.class.getName());
125 /** HtmlTree can only be constructed from this package */
126 HtmlTree() {
836 * Contains the logic for converting the contents of one HtmlTree into
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
NotificationUtils.java 66 import com.google.android.mail.common.html.parser.HtmlTree;
92 private static final HtmlTree.PlainTextConverterFactory MESSAGE_CONVERTER_FACTORY =
93 new HtmlTree.PlainTextConverterFactory() {
95 public HtmlTree.PlainTextConverter createInstance() {
    [all...]
Utils.java 21 import com.google.android.mail.common.html.parser.HtmlTree;
592 * Returns a {@link HtmlTree} representation of the specified HTML string.
594 public static HtmlTree getHtmlTree(String htmlText) {
599 * Returns a {@link HtmlTree} representation of the specified HTML string.
601 private static HtmlTree getHtmlTree(String htmlText, HtmlParser parser,
    [all...]

Completed in 195 milliseconds