Searched refs:implMethod (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/generator/bean/
H A DImplStructureStrategy.java86 private JMethod implMethod;
89 return implMethod.param(type,name);
93 implMethod = impl.method( JMod.PUBLIC, returnType, methodName );
94 return implMethod;
98 return implMethod.javadoc();
152 private JMethod implMethod;
158 return implMethod.param(type,name);
164 implMethod = impl.method( JMod.PUBLIC, returnType, methodName );
165 return implMethod;
172 return implMethod
[all...]
/openjdk7/jdk/src/share/classes/sun/rmi/rmic/newrmic/jrmp/
H A DRemoteClass.java340 MethodDoc implMethod = findImplMethod(method);
341 if (implMethod != null) { // should not be null
342 for (ClassDoc ex : implMethod.thrownExceptions()) {
345 implMethod.name() + implMethod.signature(),
401 for (MethodDoc implMethod : implClass.methods()) {
402 if (name.equals(implMethod.name()) &&
403 desc.equals(Util.methodDescriptorOf(implMethod)))
405 return implMethod;
/openjdk7/corba/src/share/classes/sun/rmi/rmic/iiop/
H A DImplementationType.java267 private boolean updateExceptions (MemberDefinition implMethod, Method[] list, argument
270 String implMethodSig = implMethod.toString();
283 ValueType[] implExcept = getMethodExceptions(implMethod,quiet,stack);
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DMethodExpression.java87 MemberDefinition implMethod = null;
366 implMethod = sourceClass.getAccessMember(env, ctx, field, true);
372 if (implMethod == null && field.isPrivate()) {
375 implMethod = cdef.getAccessMember(env, ctx, field, false);
461 if (implMethod != null) {
462 m = implMethod;
478 if (implMethod != null) {
501 if (implMethod != null) {
518 if (implMethod != null) {
519 //System.out.println("Calling " + field + " via " + implMethod);
[all...]
H A DNewInstanceExpression.java44 MemberDefinition implMethod = null; field in class:NewInstanceExpression
279 implMethod = cdef.getAccessMember(env, ctx, field, false);
533 if (implMethod != null) {
543 ((implMethod != null) ? implMethod : field));
/openjdk7/jdk/src/share/classes/sun/rmi/rmic/
H A DRemoteClass.java490 MemberDefinition implMethod = implClassDef.findMethod(
492 if (implMethod != null) { // should not be null
493 exceptions = implMethod.getExceptions(env);
499 implMethod.toString(),

Completed in 59 milliseconds