• Home
  • Raw
  • Download

Lines Matching refs:propertyInfo

745 +            PropertyInfo propertyInfo = (PropertyInfo) properties.elementAt(index.intValue());
746 + if (propertyInfo.getType()!=SoapObject.class && propertyInfo.getValue()!=null){
747 + return propertyInfo.getValue();
749 + propertyInfo = new PropertyInfo();
750 + propertyInfo.setType(String.class);
751 + propertyInfo.setValue(EMPTY_STRING);
752 + propertyInfo.setName(name);
753 + propertyInfo.setNamespace(namespace);
754 + return (Object) propertyInfo.getValue();
771 + PropertyInfo propertyInfo = (PropertyInfo) properties.elementAt(index.intValue());
772 + if (propertyInfo.getType()!=SoapObject.class && propertyInfo.getValue()!=null){
773 + return propertyInfo.getValue().toString();
793 + PropertyInfo propertyInfo = (PropertyInfo) properties.elementAt(index.intValue());
794 + if (propertyInfo.getType()!=SoapObject.class && propertyInfo.getValue()!=null){
795 + return propertyInfo.getValue().toString();
797 + propertyInfo = new PropertyInfo();
798 + propertyInfo.setType(String.class);
799 + propertyInfo.setValue(EMPTY_STRING);
800 + propertyInfo.setName(name);
801 + propertyInfo.setNamespace(namespace);
802 + return (Object) propertyInfo.getValue();
820 + PropertyInfo propertyInfo = (PropertyInfo) properties.elementAt(index.intValue());
821 + if (propertyInfo.getType()!=SoapObject.class && propertyInfo.getValue()!=null){
822 + return propertyInfo.getValue().toString();
868 PropertyInfo propertyInfo = (PropertyInfo) properties.elementAt(index.intValue());
869 - if (propertyInfo.getType() != SoapObject.class) {
870 + if (propertyInfo.getType()!=SoapObject.class && propertyInfo.getValue()!=null){
871 return propertyInfo.getValue();
873 propertyInfo = new PropertyInfo();
880 PropertyInfo propertyInfo = (PropertyInfo) properties.elementAt(index.intValue());
881 - if (propertyInfo.getType() != SoapObject.class) {
882 + if (propertyInfo.getType()!=SoapObject.class && propertyInfo.getValue()!=null){
883 return propertyInfo.getValue().toString();
892 PropertyInfo propertyInfo = (PropertyInfo) properties.elementAt(index.intValue());
893 - if (propertyInfo.getType() != SoapObject.class) {
894 + if (propertyInfo.getType()!=SoapObject.class && propertyInfo.getValue()!=null){
895 return propertyInfo.getValue().toString();
897 propertyInfo = new PropertyInfo();
904 PropertyInfo propertyInfo = (PropertyInfo) properties.elementAt(index.intValue());
905 - if (propertyInfo.getType() != SoapObject.class) {
906 + if (propertyInfo.getType()!=SoapObject.class && propertyInfo.getValue()!=null){
907 return propertyInfo.getValue().toString();
950 PropertyInfo propertyInfo = (PropertyInfo) properties.elementAt(propIndex);
951 - PropertyInfo propertyInfoClonned = (PropertyInfo) propertyInfo.clone();
955 + PropertyInfo propertyInfoClonned = (PropertyInfo)propertyInfo.clone();
971 propertyInfo.type = value == null ? PropertyInfo.OBJECT_CLASS : value
973 propertyInfo.value = value;
974 + return addProperty(propertyInfo);
989 + PropertyInfo propertyInfo = new PropertyInfo();
990 + propertyInfo.name = name;
991 propertyInfo.namespace = namespace;
993 + propertyInfo.type = value == null ? PropertyInfo.OBJECT_CLASS : value
995 + propertyInfo.value = value;
996 return addProperty(propertyInfo);
1606 if ((propertyInfo.flags & PropertyInfo.TRANSIENT) == 0) {
1607 - writer.startTag(propertyInfo.namespace, propertyInfo.name);
1608 - writeProperty(writer, obj.getProperty(i), propertyInfo);
1609 - writer.endTag(propertyInfo.namespace, propertyInfo.name);
1612 + writer.startTag(propertyInfo.namespace, propertyInfo.name);
1613 + writeProperty(writer, objValue, propertyInfo);
1614 + writer.endTag(propertyInfo.namespace, propertyInfo.name);
1644 + if (propertyInfo.namespace != null && propertyInfo.namespace.length() > 0) {
1645 + namespace = propertyInfo.namespace;
1733 + PropertyInfo propertyInfo = new PropertyInfo();
1741 + obj.getPropertyInfo(i, properties, propertyInfo);
1745 + if ((propertyInfo.flags & PropertyInfo.TRANSIENT) == 0) {
1748 + writer.startTag(propertyInfo.namespace, propertyInfo.name);
1749 + writeProperty(writer, objValue, propertyInfo);
1750 + writer.endTag(propertyInfo.namespace, propertyInfo.name);
1763 + if (propertyInfo.name != null && propertyInfo.name.length() > 0) {
1764 + name = propertyInfo.name;
1770 + if (propertyInfo.namespace != null && propertyInfo.namespace.length() > 0) {
1771 + namespace = propertyInfo.namespace;
2116 - PropertyInfo propertyInfo)
2117 …Object readInstance(XmlPullParser parser, String namespace, String name, PropertyInfo propertyInfo)