Search Results
OK to copy?
Examples 1 through 10 of
11 (0.061 seconds)
Class:
org.apache.axis.encoding.FieldTarget
©,
Rating:
0% of 0,
C1
Class: org.springframework.beans.factory.config.FieldRetrievingFactoryBean ©, Rating: 0% of 0, C3
Class: org.apache.tools.ant.taskdefs.optional.junit.XalanExecutor ©, Rating: 0% of 0, C1
Class: org.springframework.jdbc.support.lob.OracleLobHandler ©, Rating: 0% of 0, C1
Class: org.springframework.jdbc.support.lob.OracleLobHandler ©, Rating: 0% of 0, C1
Class: org.springframework.jdbc.support.lob.OracleLobHandler ©, Rating: 0% of 0, C1
Class: org.springframework.jdbc.support.lob.OracleLobHandler ©, Rating: 0% of 0, C1
Class: org.springframework.web.servlet.view.jasperreports.AbstractJasperReportsView ©, Rating: 0% of 0, C2
Class: org.apache.axis.utils.JavaUtils ©, Rating: 0% of 0, C2
Class: org.apache.axis.utils.JavaUtils ©, Rating: 0% of 0, C1
083 {
084 Class cls = targetObject.getClass();
085 targetField = cls.getField(fieldName);
086 this.targetObject = targetObject;
087 }
Class: org.springframework.beans.factory.config.FieldRetrievingFactoryBean ©, Rating: 0% of 0, C3
172 // try to get the exact method first
173 Class targetClass = (this.targetObject != null) ? this.targetObject.getClass() : this.targetClass;
174 this.fieldObject = targetClass.getField(this.targetField);
175 }
176
Class: org.apache.tools.ant.taskdefs.optional.junit.XalanExecutor ©, Rating: 0% of 0, C1
133 String pkg = procVersion.getPackage().getName();
134 try {
135 Field f = procVersion.getField("S_VERSION");
136 return pkg + " " + f.get(null).toString();
137 } catch (Exception e) {
Class: org.springframework.jdbc.support.lob.OracleLobHandler ©, Rating: 0% of 0, C1
128 this.durationSessionConstants.put(
129 this.clobClass, new Integer(this.clobClass.getField(DURATION_SESSION_FIELD_NAME).getInt(null)));
130 this.modeReadWriteConstants.put(
131 this.clobClass, new Integer(this.clobClass.getField(MODE_READWRITE_FIELD_NAME).getInt(null)));
132 }
Class: org.springframework.jdbc.support.lob.OracleLobHandler ©, Rating: 0% of 0, C1
126 // initialize oracle.sql.CLOB class
127 this.clobClass = getClass().getClassLoader().loadClass(CLOB_CLASS_NAME);
128 this.durationSessionConstants.put(
129 this.clobClass, new Integer(this.clobClass.getField(DURATION_SESSION_FIELD_NAME).getInt(null)));
130 this.modeReadWriteConstants.put(
Class: org.springframework.jdbc.support.lob.OracleLobHandler ©, Rating: 0% of 0, C1
121 this.durationSessionConstants.put(
122 this.blobClass, new Integer(this.blobClass.getField(DURATION_SESSION_FIELD_NAME).getInt(null)));
123 this.modeReadWriteConstants.put(
124 this.blobClass, new Integer(this.blobClass.getField(MODE_READWRITE_FIELD_NAME).getInt(null)));
125
Class: org.springframework.jdbc.support.lob.OracleLobHandler ©, Rating: 0% of 0, C1
119 // initialize oracle.sql.BLOB class
120 this.blobClass = getClass().getClassLoader().loadClass(BLOB_CLASS_NAME);
121 this.durationSessionConstants.put(
122 this.blobClass, new Integer(this.blobClass.getField(DURATION_SESSION_FIELD_NAME).getInt(null)));
123 this.modeReadWriteConstants.put(
Class: org.springframework.web.servlet.view.jasperreports.AbstractJasperReportsView ©, Rating: 0% of 0, C2
302 try {
303 Class cls = ClassUtils.forName(className);
304 Field field = cls.getField(fieldName);
305
306 if (JRExporterParameter.class.isAssignableFrom(field.getType())) {
Class: org.apache.axis.utils.JavaUtils ©, Rating: 0% of 0, C2
0955 }
0956 try {
0957 Field valueField = holder.getClass().getField("value");
0958 if (valueField.getType().isPrimitive()) {
0959 if (value == null)
Class: org.apache.axis.utils.JavaUtils ©, Rating: 0% of 0, C1
0938 }
0939 try {
0940 Field valueField = holder.getClass().getField("value");
0941 return valueField.get(holder);
0942 } catch (Exception e) {