Search Results
OK to copy?
Examples 1 through 10 of
29 (0.0020 seconds)
Class:
org.springframework.beans.propertyeditors.ClassEditor
©,
Rating:
0% of 0,
C1
Class: org.springframework.util.ObjectUtils ©, Rating: 0% of 0, C2
Class: org.apache.axis.utils.FieldPropertyDescriptor ©, Rating: 0% of 0, C1
Class: org.apache.axis.utils.FieldPropertyDescriptor ©, Rating: 0% of 0, C1
Class: org.apache.axis.utils.FieldPropertyDescriptor ©, Rating: 0% of 0, C1
Class: org.springframework.web.bind.ServletRequestDataBinder ©, Rating: 0% of 0, C3
Class: org.apache.axis.encoding.ser.ArraySerializer ©, Rating: 0% of 0, C2
Class: org.apache.axis.encoding.ser.ArraySerializer ©, Rating: 0% of 0, 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
54 public String getAsText() {
55 Class clazz = (Class) getValue();
56 return (clazz.isArray() ? clazz.getComponentType().getName() + ClassUtils.ARRAY_SUFFIX : clazz.getName());
57 }
58
Class: org.springframework.util.ObjectUtils ©, Rating: 0% of 0, C2
097 Assert.isTrue(clazz.isArray(),
098 "The specified parameter is not an array - it must be a primitive array.");
099 Assert.isTrue(clazz.getComponentType().isPrimitive(),
100 "The specified parameter is not a primitive array.");
101 int length = Array.getLength(primitiveArray);
Class: org.apache.axis.utils.FieldPropertyDescriptor ©, Rating: 0% of 0, C1
177 public Class getType() {
178 if (isIndexed()) {
179 return field.getType().getComponentType();
180 } else {
181 return field.getType();
Class: org.apache.axis.utils.FieldPropertyDescriptor ©, Rating: 0% of 0, C1
166 throw new IllegalAccessException("Not an indexed field!");
167 }
168 Class componentType = field.getType().getComponentType();
169 growArrayToSize(obj, componentType, i);
170 Array.set(get(obj), i, newValue);
Class: org.apache.axis.utils.FieldPropertyDescriptor ©, Rating: 0% of 0, C1
116 */
117 public boolean isIndexed() {
118 return (field.getType().getComponentType() != null);
119 }
120
Class: org.springframework.web.bind.ServletRequestDataBinder ©, Rating: 0% of 0, C3
153 else if (type != null && type.isArray()) {
154 // Special handling of array property.
155 pvs.addPropertyValue(field, Array.newInstance(type.getComponentType(), 0));
156 }
157 else {
Class: org.apache.axis.encoding.ser.ArraySerializer ©, Rating: 0% of 0, C2
404 while (componentType.isArray()) {
405 dimString += "[]";
406 componentType = componentType.getComponentType();
407 }
408 } else {
Class: org.apache.axis.encoding.ser.ArraySerializer ©, Rating: 0% of 0, C2
400 if (javaType.isArray()) {
401 String dimString = "[]";
402 componentType = javaType.getComponentType();
403 if (componentType.isArray()) {
404 while (componentType.isArray()) {
Class: org.apache.axis.encoding.ser.ArraySerializer ©, Rating: 0% of 0, C3
144 String dims = "";
145 while (componentType.isArray()) {
146 componentType = componentType.getComponentType();
147 if (soap == SOAPConstants.SOAP12_CONSTANTS)
148 dims += "* ";
Class: org.apache.axis.encoding.ser.ArraySerializer ©, Rating: 0% of 0, C3
129 Class componentType;
130 if (list == null) {
131 componentType = cls.getComponentType();
132 } else {
133 componentType = Object.class;