Home
last modified time | relevance | path

Searched refs:getMethod (Results 1 – 25 of 65) sorted by relevance

123

/trunk/main/wizards/com/sun/star/wizards/ui/event/
H A DDataAware.java266 private Method getMethod; field in DataAware.PropertyValue
279 getMethod = createGetMethod(propertyName, propertyOwner); in PropertyValue()
280 setMethod = createSetMethod(propertyName, propertyOwner, getMethod.getReturnType()); in PropertyValue()
298 m = obj.getClass().getMethod("get" + propName, EMPTY_ARRAY); in createGetMethod()
312 return getMethod.invoke(target, EMPTY_ARRAY); in get()
318 if (getMethod.getReturnType().equals(String.class)) in get()
320 if (getMethod.getReturnType().equals(Short.class)) in get()
322 if (getMethod.getReturnType().equals(Integer.class)) in get()
324 if (getMethod.getReturnType().equals(short[].class)) in get()
334 m = obj.getClass().getMethod("set" + propName, new Class[] { paramClass }); in createSetMethod()
[all …]
H A DMethodInvocation.java65 …this(paramClass == null ? obj.getClass().getMethod(methodName, null) : obj.getClass().getMethod(me… in MethodInvocation()
/trunk/main/dbaccess/qa/complex/dbaccess/
H A DRowSet.java420 testCursorMove(m_resultSet, cResSet.getMethod(NEXT, (Class[]) null), pRow, moves, null); in testRowSetEvents()
421 testCursorMove(m_resultSet, cResSet.getMethod(NEXT, (Class[]) null), pRow, moves, null); in testRowSetEvents()
422 testCursorMove(m_resultSet, cResSet.getMethod(NEXT, (Class[]) null), pRow, moves, null); in testRowSetEvents()
424 testCursorMove(m_resultSet, cResSet.getMethod(NEXT, (Class[]) null), pRow, moves, null); in testRowSetEvents()
427 testCursorMove(m_resultSet, cResSet.getMethod(NEXT, (Class[]) null), pRow, moves, null); in testRowSetEvents()
431 testCursorMove(m_resultSet, cResSet.getMethod(NEXT, (Class[]) null), pRow, moves, null); in testRowSetEvents()
435 testCursorMove(m_resultSet, cResSet.getMethod(NEXT, (Class[]) null), pRow, moves, null); in testRowSetEvents()
451 testCursorMove(upd, cupd.getMethod("insertRow", (Class[]) null), pRow, moves, null); in testRowSetEvents()
458 testCursorMove(upd, cupd.getMethod("updateRow", (Class[]) null), pRow, moves, null); in testRowSetEvents()
463 testCursorMove(upd, cupd.getMethod("deleteRow", (Class[]) null), pRow, moves, null); in testRowSetEvents()
[all …]
H A DSingleSelectQueryComposer.java95 … final Method attributeGetter = composerClass.getMethod("get" + _attributeName, new Class[] in checkAttributeAccess()
98 … final Method attributeSetter = composerClass.getMethod("set" + _attributeName, new Class[] in checkAttributeAccess()
/trunk/main/scripting/java/com/sun/star/script/framework/container/
H A DXMLParserFactory.java141 method = formatterClass.getMethod("setMethod", in write()
144 method = formatterClass.getMethod("setIndenting", in write()
150 method = serializerClass.getMethod("setOutputByteStream", in write()
153 method = serializerClass.getMethod("setOutputFormat", in write()
158 method = serializerClass.getMethod("asDOMSerializer", in write()
163 method = impl.getClass().getMethod("serialize", in write()
/trunk/main/jurt/java/jurt/src/main/java/com/sun/star/lib/uno/bridges/java_remote/
H A DProxyFactory.java172 METHOD_EQUALS = Object.class.getMethod(
174 METHOD_HASH_CODE = Object.class.getMethod("hashCode", null);
175 METHOD_TO_STRING = Object.class.getMethod("toString", null);
176 METHOD_QUERY_INTERFACE = IQueryInterface.class.getMethod(
178 METHOD_IS_SAME = IQueryInterface.class.getMethod(
180 METHOD_GET_OID = IQueryInterface.class.getMethod("getOid", null);
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/complexlib/
H A DComplexTestCase.java66 Method before = this.getClass().getMethod("before", new Class[] {} ); in before()
140 testMethod = this.getClass().getMethod(entryName, new Class[] { String.class }); in test_method()
144 testMethod = this.getClass().getMethod(entryName, new Class[] {} ); in test_method()
234 Method after = this.getClass().getMethod("after", new Class[] {}); in after()
H A DShowTargets.java103 try { interactiveTestMethod = testClass.getMethod( "isInteractiveTest", new Class[]{} ); } in isInteractiveTest()
121 …try { getShortDescriptionMethod = _testClass.getMethod( "getShortTestDescription", new Class[]{} )… in getShortTestDescription()
/trunk/main/xmerge/java/xmerge/src/main/java/org/openoffice/xmerge/converter/dom/
H A DDOMDocument.java270 meth = jaxpDoc.getMethod("write", in docToBytes()
280 meth = crimsonDoc.getMethod("write", in docToBytes()
300 meth = xercesSer.getMethod("serialize", in docToBytes()
317 meth = gnuSer.getMethod("serialize", in docToBytes()
/trunk/main/jurt/java/jurt/src/main/java/com/sun/star/comp/loader/
H A DJavaLoader.java323 compfac_method = clazz.getMethod( in activate()
333 method = clazz.getMethod("__getServiceFactory", paramTypes); in activate()
357 method = clazz.getMethod("getServiceFactory", paramTypes); in activate()
424 Method method = clazz.getMethod("__writeRegistryServiceInfo", paramTypes); in writeRegistryInfo()
/trunk/main/stoc/test/
H A Dtestcorefl.cxx314 …Any bla = xRefl->forName(OUString::createFromAscii("ModuleC.XInterfaceA"))->getMethod(OUString::cr… in test_corefl()
332 …Any bla = xRefl->forName(OUString::createFromAscii("ModuleC.XInterfaceA"))->getMethod(OUString::cr… in test_corefl()
343 …Any bla = xRefl->forName(OUString::createFromAscii("ModuleC.XInterfaceA"))->getMethod(OUString::cr… in test_corefl()
358 …TEST_ENSHURE(xRefl->forName(OUString::createFromAscii("ModuleC.XInterfaceA"))->getMethod(OUString:… in test_corefl()
/trunk/main/ridljar/java/ridl/src/main/java/com/sun/star/lib/uno/typedesc/
H A DMethodDescription.java49 other.getMethod()); in MethodDescription()
92 public Method getMethod() { in getMethod() method in MethodDescription
/trunk/main/xmerge/java/xmerge/src/main/java/org/openoffice/xmerge/converter/xml/
H A DOfficeDocument.java879 meth = jaxpDoc.getMethod("write", in docToBytes()
890 meth = crimsonDoc.getMethod("write", in docToBytes()
912 meth = xercesSer.getMethod("serialize", in docToBytes()
929 meth = gnuSer.getMethod("serialize", in docToBytes()
/trunk/main/jurt/java/jurt/src/main/java/com/sun/star/lib/uno/environments/remote/
H A DJob.java97 IMethodDescription md = _iMessage.getMethod(); in execute()
104 : md.getMethod().invoke(_object, args); in execute()
/trunk/main/jurt/test/com/sun/star/lib/uno/bridges/java_remote/
H A DProxyFactory_Test.java60 proxy.getClass().getMethod("queryInterface", in testExceptionHandling()
70 proxy.getClass().getMethod("getRegisteredObject", in testExceptionHandling()
/trunk/main/toolkit/qa/complex/toolkit/
H A DAssert.java117 return i_objectClass.getMethod( i_methodName, i_argClasses ); in impl_getMethod()
160 return i_objectClass.getMethod( i_methodName, argClasses ); in impl_getMethod()
/trunk/main/bean/test/applet/oooapplet/
H A DOOoViewer.java83 Method methLoad = beanClass.getMethod( in start()
108 Method methStop = m_objBean.getClass().getMethod( in stop()
/trunk/main/odk/source/com/sun/star/lib/loader/
H A DLoader.java133 Method m = c.getMethod( "main", new Class[] { String[].class } ); in main()
181 Method m = c.getMethod( "getJars", (Class[]) null ); in getCustomLoader()
/trunk/main/eventattacher/source/
H A Deventattacher.cxx135 Reference< XIdlMethod > xMethod = m_xListenerType->getMethod( FunctionName ); in invoke()
195 Reference< XIdlMethod > xMethod = m_xListenerType->getMethod( Name ); in hasMethod()
537 Reference< XIdlMethod > xMeth = xListenerType->getMethod( Event.MethodName ); in approveFiring()
/trunk/main/forms/qa/integration/forms/
H A DMasterDetailForms.java162 …operateMasterAndWaitForDetailForm( loadMaster.getClass().getMethod( "load", new Class[] {} ), load… in checkMultipleKeys()
170 Method methodNext = m_masterResult.getClass().getMethod( "next" , new Class[] {} ); in checkMultipleKeys()
/trunk/main/accessibility/java/java_uno_accessbridge/src/main/java/org/openoffice/accessibility/
H A DWindowsAccessBridgeAdapter.java59 registerVirtualFrame = bridge.getMethod("registerVirtualFrame", in attach()
61 revokeVirtualFrame = bridge.getMethod("revokeVirtualFrame", in attach()
/trunk/main/stoc/source/corereflection/
H A Dbase.hxx205 …virtual Reference< XIdlMethod > SAL_CALL getMethod( const OUString & rName ) throw(::com::sun::sta…
247 …virtual Reference< XIdlMethod > SAL_CALL getMethod( const OUString & rName ) throw(::com::sun::sta…
/trunk/main/forms/source/xforms/
H A Dsubmission.cxx168 OUString Submission::getMethod() const in getMethod() function in Submission
315 OUString aMethod = getMethod(); in doSubmit()
/trunk/main/ridljar/java/ridl/src/main/java/com/sun/star/uno/
H A DIMethodDescription.java83 Method getMethod(); in getMethod() method
/trunk/main/reportbuilder/java/com/sun/star/report/
H A DSDBCReportDataFactory.java309 tools.getClass().getMethod("getFieldsByCommandDescriptor", parameter); in getFieldsByCommandDescriptor()
331 final Method call = tools.getClass().getMethod("getComposer", parameter); in getComposer()

Completed in 91 milliseconds

123