Package org.cfeclipse.cfml.parser.exception

Examples of org.cfeclipse.cfml.parser.exception.InvalidChildItemException


   */
  public void insertBefore(DocItem newChild, DocItem refChild)
        throws InvalidChildItemException, NodeNotFound
  {
    if(!newChild.validChildAddition(this))
      throw new InvalidChildItemException("Child item of type \'" + newChild.getName() + "\' says it is not allowed to belong to this (\'" + itemName + "\') doc item");
   
    int insertPos = docNodes.size();
   
    //
    // Does the refChild exist and exists in this node's children?
View Full Code Here

TOP

Related Classes of org.cfeclipse.cfml.parser.exception.InvalidChildItemException

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.