Search Results
OK to copy?
Examples 1 through 10 of
13 (0.0010 seconds)
Class:
org.apache.axis.SimpleChain
©,
Rating:
100% of 1,
C1
Class: org.apache.axis.deployment.wsdd.WSDDElement ©, Rating: 0% of 0, C2
Class: org.apache.axis.providers.java.MsgProvider ©, Rating: 0% of 0, C3
Class: org.apache.axis.client.AxisClientProxy ©, Rating: 0% of 0, C2
Class: org.apache.axis.deployment.wsdd.WSDDUndeployment ©, Rating: 0% of 0, C1
Class: org.apache.axis.message.SOAPFaultBuilder ©, Rating: 0% of 0, C3
Class: org.apache.axis.deployment.wsdd.WSDDDeployment ©, Rating: 0% of 0, C1
Class: org.apache.axis.deployment.wsdd.WSDDService ©, Rating: 0% of 0, C1
Class: org.apache.axis.AxisFault ©, Rating: 0% of 0, C1
Class: org.apache.axis.client.Service ©, Rating: 0% of 0, C2
219
220 Handler [] ret = new Handler[handlers.size()];
221 return( (Handler[]) handlers.toArray(ret) );
222 }
223
Class: org.apache.axis.deployment.wsdd.WSDDElement ©, Rating: 0% of 0, C2
145
146 Element [] elements = new Element [els.size()];
147 els.toArray(elements);
148
149 return elements;
Class: org.apache.axis.providers.java.MsgProvider ©, Rating: 0% of 0, C3
125 SOAPBodyElement [] bodyElements =
126 new SOAPBodyElement[bodies.size()];
127 bodies.toArray(bodyElements);
128 argObjects[0] = bodyElements;
129 SOAPBodyElement [] bodyResult =
Class: org.apache.axis.client.AxisClientProxy ©, Rating: 0% of 0, C2
Class: org.apache.axis.deployment.wsdd.WSDDUndeployment ©, Rating: 0% of 0, C1
263 {
264 WSDDTypeMapping[] t = new WSDDTypeMapping[typeMappings.size()];
265 typeMappings.toArray(t);
266 return t;
267 }
Class: org.apache.axis.message.SOAPFaultBuilder ©, Rating: 0% of 0, C3
254 v.add(c.getFaultCode());
255
256 faultSubCode = (QName[])v.toArray(new QName[v.size()]);
257 }
258 }
Class: org.apache.axis.deployment.wsdd.WSDDDeployment ©, Rating: 0% of 0, C1
422 {
423 WSDDTypeMapping[] t = new WSDDTypeMapping[typeMappings.size()];
424 typeMappings.toArray(t);
425 return t;
426 }
Class: org.apache.axis.deployment.wsdd.WSDDService ©, Rating: 0% of 0, C1
385 {
386 WSDDFaultFlow[] t = new WSDDFaultFlow[faultFlows.size()];
387 faultFlows.toArray(t);
388 return t;
389 }
Class: org.apache.axis.AxisFault ©, Rating: 0% of 0, C1
446 }
447 QName[] q = new QName[faultSubCode.size()];
448 return (QName[])faultSubCode.toArray(q);
449 }
450
Class: org.apache.axis.client.Service ©, Rating: 0% of 0, C2
607 }
608 javax.xml.rpc.Call[] array = new javax.xml.rpc.Call[calls.size()];
609 calls.toArray(array);
610 return array;
611 }