Examples of IMXMLWebServiceOperationNode


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

    };
    IMXMLWebServiceNode node = getMXMLWebServiceNode(code);
    assertThat("getChildCount", node.getChildCount(), is(3));
    IMXMLPropertySpecifierNode wsdlNode = (IMXMLPropertySpecifierNode)node.getChild(0);
    assertThat("", wsdlNode.getName(), is("wsdl"));
    IMXMLWebServiceOperationNode op1Node = (IMXMLWebServiceOperationNode)node.getChild(1);
    assertThat("", op1Node.getName(), is("mx.rpc.soap.mxml.Operation"));
    assertThat("", op1Node.getOperationName(), is("op1"));
    IMXMLWebServiceOperationNode op2Node = (IMXMLWebServiceOperationNode)node.getChild(2);
    assertThat("", op2Node.getName(), is("mx.rpc.soap.mxml.Operation"));
    assertThat("", op2Node.getOperationName(), is("op2"));
  }
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.