Package org.apache.flex.compiler.tree.mxml

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


    };
    IMXMLRemoteObjectNode node = getMXMLRemoteObjectNode(code);
    assertThat("getChildCount", node.getChildCount(), is(2));
    IMXMLPropertySpecifierNode destinationNode = (IMXMLPropertySpecifierNode)node.getChild(0);
    assertThat("", destinationNode.getName(), is("destination"));
    IMXMLRemoteObjectMethodNode methodNode = (IMXMLRemoteObjectMethodNode)node.getChild(1);
    assertThat("", methodNode.getName(), is("mx.rpc.remoting.mxml.Operation"));
    assertThat("", methodNode.getMethodName(), is("GetQuote"));
  }
View Full Code Here

TOP

Related Classes of org.apache.flex.compiler.tree.mxml.IMXMLRemoteObjectMethodNode

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.