HomeSort by relevance Sort by last modified time
    Searched refs:PropertyInfo (Results 1 - 19 of 19) sorted by null

  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
AttributeInfo.java 27 public class AttributeInfo extends PropertyInfo
SoapObject.java 53 * The Vector of properties (can contain PropertyInfo and SoapObject)
123 if (otherProp instanceof PropertyInfo &&
124 thisProp instanceof PropertyInfo) {
126 PropertyInfo otherPropInfo = (PropertyInfo) otherProp;
127 PropertyInfo thisPropInfo = (PropertyInfo) thisProp;
151 if (prop instanceof PropertyInfo) {
152 return ((PropertyInfo) prop).getValue();
165 PropertyInfo propertyInfo = (PropertyInfo) properties.elementAt(index)
    [all...]
DM.java 34 PropertyInfo expected)
73 cm.addMapping(cm.xsd, "int", PropertyInfo.INTEGER_CLASS, this);
74 cm.addMapping(cm.xsd, "long", PropertyInfo.LONG_CLASS, this);
75 cm.addMapping(cm.xsd, "string", PropertyInfo.STRING_CLASS, this);
76 cm.addMapping(cm.xsd, "boolean", PropertyInfo.BOOLEAN_CLASS, this);
KvmSerializable.java 68 void getPropertyInfo(int index, Hashtable properties, PropertyInfo info);
Marshal.java 45 PropertyInfo expected)
PropertyInfo.java 36 public class PropertyInfo implements java.io.Serializable
44 public static final PropertyInfo OBJECT_TYPE = new PropertyInfo();
82 public PropertyInfo elementType;
84 public PropertyInfo()
99 public PropertyInfo getElementType()
108 public void setElementType(PropertyInfo elementType)
SppPropertyInfo.java 44 public static final PropertyInfo OBJECT_TYPE = new PropertyInfo();
82 public PropertyInfo elementType;
99 public PropertyInfo getElementType()
108 public void setElementType(PropertyInfo elementType)
MarshalHashtable.java 50 PropertyInfo expected)
58 Object key = envelope.read(parser, item, 0, null, null, PropertyInfo.OBJECT_TYPE);
63 Object value = envelope.read(parser, item, 1, null, null, PropertyInfo.OBJECT_TYPE);
MarshalBase64.java 35 PropertyInfo expected)
MarshalDate.java 35 PropertyInfo expected)
SoapSerializationEnvelope.java 103 addMapping(enc, ARRAY_MAPPING_NAME, PropertyInfo.VECTOR_CLASS);
155 PropertyInfo.OBJECT_TYPE);
183 PropertyInfo info = new PropertyInfo();
215 ((SoapObject) obj).getNamespace(), name, PropertyInfo.OBJECT_TYPE));
283 PropertyInfo.OBJECT_TYPE));
300 protected void readVector(XmlPullParser parser, Vector v, PropertyInfo elementType)
321 elementType = PropertyInfo.OBJECT_TYPE;
347 PropertyInfo expected) throws IOException, XmlPullParserException {
432 PropertyInfo expected
    [all...]