Searched defs:invInfoMethod (Results 1 - 1 of 1) sorted by relevance
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/containers/ |
H A D | BaseContainer.java | 3119 private void setConcurrencyInvInfo(Method invInfoMethod, String methodIntf, argument 3132 if(implMethodMatchesInvInfoMethod(invInfoMethod, methodIntf, readLockMethod)) { 3143 if(implMethodMatchesInvInfoMethod(invInfoMethod, methodIntf, writeLockMethod)) { 3164 if(implMethodMatchesInvInfoMethod(invInfoMethod, methodIntf, accessTimeoutMethod)) { 3184 (Method invInfoMethod, String methodIntf, Method implMethod) { 3190 match = ( implMethod.getDeclaringClass().equals(invInfoMethod.getDeclaringClass()) && 3191 TypeUtil.sameMethodSignature(implMethod, invInfoMethod) ); 3195 Modifier.isPublic(invInfoMethod.getModifiers()) && 3196 TypeUtil.sameMethodSignature(implMethod, invInfoMethod); 3183 implMethodMatchesInvInfoMethod(Method invInfoMethod, String methodIntf, Method implMethod) argument
|
Completed in 231 milliseconds