OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SoapObject
(Results
1 - 3
of
3
) sorted by null
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
SoapObject.java
41
public class
SoapObject
extends AttributeContainer implements KvmSerializable {
53
* The Vector of properties (can contain PropertyInfo and
SoapObject
)
62
* Creates a new <code>
SoapObject
</code> instance.
65
public
SoapObject
() {
70
* Creates a new <code>
SoapObject
</code> instance.
78
public
SoapObject
(String namespace, String name) {
84
if (!(obj instanceof
SoapObject
)) {
88
SoapObject
otherSoapObject = (
SoapObject
) obj;
112
* Helper function for
SoapObject
.equal
[
all
...]
MarshalHashtable.java
55
SoapObject
item = new ItemSoapObject(instance);
76
SoapObject
item = new
SoapObject
(null, null);
89
class ItemSoapObject extends
SoapObject
{
SoapSerializationEnvelope.java
164
/** Read a
SoapObject
. This extracts any attributes and then reads the object as a KvmSerializable. */
165
protected void readSerializable(XmlPullParser parser,
SoapObject
obj) throws IOException,
171
((
SoapObject
) obj).addAttribute(attributeName, value);
182
if (!implicitTypes || !(obj instanceof
SoapObject
)) {
213
((
SoapObject
) obj).addProperty(parser.getName(),
215
((
SoapObject
) obj).getNamespace(), name, PropertyInfo.OBJECT_TYPE));
223
* method is called. It will build either a SoapPrimitive or a
SoapObject
228
* @return unknownObject wrapped as a SoapPrimitive or
SoapObject
262
SoapObject
so = new
SoapObject
(typeNamespace, typeName)
[
all
...]
Completed in 73 milliseconds