Package org.outerj.daisy.diff.html.ancestor

Examples of org.outerj.daisy.diff.html.ancestor.TagChangeSematic


    styleTags.add("sup");
    styleTags.add("strike");
  }

  public TagToString create(TagNode node, Locale locale) {
    TagChangeSematic sem = getChangeSemantic(node.getQName());
    ResourceBundle bundle = ResourceBundle.getBundle(BUNDLE_NAME, locale);
    if (node.getQName().equalsIgnoreCase("a")) //$NON-NLS-1$
      return new AnchorToString(node, sem, bundle);
    if (node.getQName().equalsIgnoreCase("img")) //$NON-NLS-1$
      return new NoContentTagToString(node, sem, bundle);
View Full Code Here

TOP

Related Classes of org.outerj.daisy.diff.html.ancestor.TagChangeSematic

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.