Examples of IMXMLPrivateNode


Examples of org.apache.flex.compiler.tree.mxml.IMXMLPrivateNode

public class MXMLPrivateNodeTests extends MXMLNodeBaseTests
{
  private IMXMLPrivateNode getMXMLPrivateNode(String[] code)
  {
    IMXMLFileNode fileNode = getMXMLFileNode(code);
    IMXMLPrivateNode node = (IMXMLPrivateNode)findFirstDescendantOfType(fileNode, IMXMLPrivateNode.class);
    assertThat("getNodeID", node.getNodeID(), is(ASTNodeID.MXMLPrivateID));
    assertThat("getName", node.getName(), is("Private"));
    assertThat("getChildCount", node.getChildCount(), is(0));
    return node;
  }
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.