Examples of CfmlComment


Examples of org.cfeclipse.cfml.parser.cfmltagitems.CfmlComment

    while (iter.hasNext()) {
      Object cfItem = iter.next();

      if (cfItem instanceof CfmlComment) {
        CfmlComment comment = (CfmlComment) cfItem;
        String commentText = ((CfmlComment) cfItem).getItemData();

        // Now get the type from the comment text         
        Pattern p = Pattern.compile(cfmlVarRE);
        Matcher m = p.matcher(commentText);
View Full Code Here

Examples of org.cfeclipse.cfml.parser.cfmltagitems.CfmlComment

                }

                break;
              case MATCHER_CFMLCOMMENT:
                //System.out.println("CFParser::createDocTree() - Got a CFML comment!");
                DocItem newComment = new CfmlComment(
                    match.getLineNumber(),
                    match.getStartPos(),
                    match.getEndPos(),
                    match.getMatch()
                );
               
                newComment.setItemData(match.getMatch());
              addDocItemToTree(match, newComment);
               
                break;
              case MATCHER_CFSCRIPT:
                tagName = tagName.substring(1, tagName.length());
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.