Package org.cfeclipse.cfml.parser

Examples of org.cfeclipse.cfml.parser.ParseWarning


        if (itemName.indexOf("_") != 2) {
        //System.err.println("TagItem::hasClosingTag() - The tag I've retrieved is null! Tag name is \'" + itemName + "\' Line number: " + this.lineNumber);
        //
        // Should really raise an exception?
          this.isUnknownTag = true;
        parseMessages.addMessage(new ParseWarning(lineNumber, startPosition, endPosition, itemData,
                      "Unknown cf tag \'<" + itemName + ">\'."));
        }
      return true// Let's say it's a single tag.
    }
   
View Full Code Here

TOP

Related Classes of org.cfeclipse.cfml.parser.ParseWarning

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.