Examples of PageElementComment


Examples of org.wikipediacleaner.api.data.PageElementComment

      boolean formatOk = false;

      // If current value position is the beginning of a comment, skip it
      if ((valueChar == '<') &&
          (analysis.isInComment(offset + valueIndex) != null)) {
        PageElementComment comment = analysis.isInComment(offset + valueIndex);
        formatOk = true;
        valueIndex = comment.getEndIndex() - offset;

      // If current value position is the beginning of a reference, skip it
      } else if ((valueChar == '<') &&
                 (analysis.isInTag(offset + valueIndex, PageElementTag.TAG_WIKI_REF) != null)) {
        PageElementTag tag = analysis.isInTag(offset + valueIndex, PageElementTag.TAG_WIKI_REF);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.