e.g. Calendar Search Help
You must enter a value before pressing Search
Search Results OK to copy? Examples 1 through 10 of 10 (0.0010 seconds)
Class: org.apache.axis.utils.FieldPropertyDescriptor  ©, Rating: 0% of 0, C1

168 Class componentType = field.getType().getComponentType(); 169 growArrayToSize(obj, componentType, i); 170 Array.set(get(obj), i, newValue); 171 } 172

Class: org.apache.axis.utils.BeanPropertyDescriptor  ©, Rating: 0% of 0, C1

193 new Integer(i), newValue}); 194 } else { 195 Array.set(get(obj), i, newValue); 196 } 197 }

Class: org.apache.batik.gvt.event.AWTEventDispatcher  ©, Rating: 0% of 0, C1

343 for (int i = 0, j = 0;i < pairElements.length-1; i+=2) { 344 if (pairElements[i].equals(listenerType)) { 345 Array.set(array, j, pairElements[i+1]); 346 ++j; 347 }

Class: org.apache.axis.utils.JavaUtils  ©, Rating: 0% of 1, C3

0413 for (Iterator i = ((Collection)arg).iterator(); 0414 i.hasNext();) { 0415 Array.set(array, idx++, i.next()); 0416 } 0417 }

Class: org.apache.axis.utils.JavaUtils  ©, Rating: 0% of 0, C3

0407 if (arg.getClass().isArray()) { 0408 for (int i = 0; i < length; i++) { 0409 Array.set(array, i, Array.get(arg, i)); 0410 } 0411 } else {

Class: org.apache.axis.utils.JavaUtils  ©, Rating: 0% of 0, C3

0337 Object array = 0338 Array.newInstance(destClass.getComponentType(), 1); 0339 Array.set(array, 0, arg); 0340 return array; 0341 }

Class: org.springframework.beans.BeanWrapperImpl  ©, Rating: 0% of 0, C3

1005 propertyName, propertyName + PROPERTY_KEY_PREFIX + 0 + PROPERTY_KEY_SUFFIX, 1006 null, convertedValue, componentType); 1007 Array.set(result, 0, val); 1008 return result; 1009 }

Class: org.springframework.beans.BeanWrapperImpl  ©, Rating: 0% of 0, C3

0995 propertyName, propertyName + PROPERTY_KEY_PREFIX + i + PROPERTY_KEY_SUFFIX, 0996 null, Array.get(convertedValue, i), componentType); 0997 Array.set(result, i, value); 0998 } 0999 return result;

Class: org.springframework.beans.BeanWrapperImpl  ©, Rating: 0% of 0, C3

0983 propertyName, propertyName + PROPERTY_KEY_PREFIX + i + PROPERTY_KEY_SUFFIX, 0984 null, it.next(), componentType); 0985 Array.set(result, i, value); 0986 } 0987 return result;

Class: org.springframework.beans.BeanWrapperImpl  ©, Rating: 0% of 0, C3

0719 Object newValue = doTypeConversionIfNecessary(propertyName, propertyName, null, value, requiredType); 0720 try { 0721 Array.set(propValue, Integer.parseInt(key), newValue); 0722 } 0723 catch (IllegalArgumentException ex) {

Result Page:  1