stadiumnamesresult.java
来自「kSOAP2是一个SOAP web service客户端包。主要用于资源受限制的」· Java 代码 · 共 21 行
JAVA
21 行
package org.ksoap2.samples.soccer;import org.ksoap2.serialization.*;public class StadiumNamesResult extends LiteralArrayVector { // in the resultant xml message, the array elements can // be described with different tags depending on a number // of factors (doc literal, rpc, etc...). This tells // our parent class to look for "string" protected String getItemDescriptor() { return "string"; } // This describes what type of objects are to be contained in the Array protected Class getElementClass() { return PropertyInfo.STRING_CLASS; }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?