Search Results
OK to copy?
Examples 1 through 10 of
16 (0.0010 seconds)
Class:
org.springframework.util.ObjectUtils
©,
Rating:
100% of 2,
C2
Class: org.springframework.util.ObjectUtils ©, Rating: 0% of 0, C2
Class: org.springframework.beans.propertyeditors.CustomCollectionEditor ©, Rating: 100% of 1, C2
Class: org.apache.axis.utils.FieldPropertyDescriptor ©, Rating: 0% of 0, C1
Class: org.apache.axis.encoding.ser.BeanPropertyTarget ©, Rating: 100% of 1, C3
Class: org.apache.axis.utils.BeanPropertyDescriptor ©, Rating: 0% of 0, C1
Class: org.apache.axis.types.Schema ©, Rating: 100% of 1, C2
Class: org.apache.axis.encoding.ser.ArraySerializer ©, Rating: 0% of 0, C3
Class: org.apache.axis.encoding.ser.ArraySerializer ©, Rating: 0% of 0, C3
Class: org.apache.axis.encoding.ser.ArraySerializer ©, Rating: 0% of 0, C3
103 return new Object[0];
104 }
105 Class wrapperType = Array.get(primitiveArray, 0).getClass();
106 Object[] newArray = (Object[]) Array.newInstance(wrapperType, length);
107 for (int i = 0; i < length; i++) {
Class: org.springframework.util.ObjectUtils ©, Rating: 0% of 0, C2
106 Object[] newArray = (Object[]) Array.newInstance(wrapperType, length);
107 for (int i = 0; i < length; i++) {
108 newArray[i] = Array.get(primitiveArray, i);
109 }
110 return newArray;
Class: org.springframework.beans.propertyeditors.CustomCollectionEditor ©, Rating: 100% of 1, C2
103 Collection target = createCollection(this.collectionType, length);
104 for (int i = 0; i < length; i++) {
105 target.add(Array.get(value, i));
106 }
107 super.setValue(target);
Class: org.apache.axis.utils.FieldPropertyDescriptor ©, Rating: 0% of 0, C1
Class: org.apache.axis.encoding.ser.BeanPropertyTarget ©, Rating: 100% of 1, C3
139 !type.getClass().isArray()) {
140 for (int i=0; i<Array.getLength(value); i++) {
141 Object item =
142 JavaUtils.convert(Array.get(value, i), type);
143 pd.set(object, i, item);
Class: org.apache.axis.utils.BeanPropertyDescriptor ©, Rating: 0% of 0, C1
168 throws InvocationTargetException, IllegalAccessException {
169 if (!isIndexed()) {
170 return Array.get(get(obj), i);
171 } else {
172 IndexedPropertyDescriptor id = (IndexedPropertyDescriptor)myPD;
Class: org.apache.axis.types.Schema ©, Rating: 100% of 1, C2
143 i < java.lang.reflect.Array.getLength(get_any());
144 i++) {
145 java.lang.Object obj = java.lang.reflect.Array.get(get_any(), i);
146 if (obj != null &&
147 !obj.getClass().isArray()) {
Class: org.apache.axis.encoding.ser.ArraySerializer ©, Rating: 0% of 0, C3
371 for (int index = 0; index < len; index++) {
372 for (int index2 = 0; index2 < dim2Len; index2++) {
373 Object aValue = Array.get(Array.get(value, index), index2);
374 context.serialize(elementName, null, aValue);
375 }
Class: org.apache.axis.encoding.ser.ArraySerializer ©, Rating: 0% of 0, C3
347 if (list == null) {
348 for (int index = 0; index < len; index++) {
349 Object aValue = Array.get(value, index);
350
351 // Serialize the element.
Class: org.apache.axis.encoding.ser.ArraySerializer ©, Rating: 0% of 0, C3
224 for (int i=0; i < len && okay; i++) {
225
226 Object elementValue = Array.get(value, i);
227 if (elementValue == null)
228 okay = false;