Methods Summary |
---|
private java.lang.reflect.Method[] | calculateMethods(java.lang.Class sib, java.lang.reflect.Method[] initialList)
// we start by assuming the @WebMethod was NOT used on this class
boolean webMethodAnnotationUsed = false;
List<Method> list = new ArrayList<Method>();
for (Method m : initialList) {
WebMethod wm = m.getAnnotation(javax.jws.WebMethod.class);
if (wm!=null && webMethodAnnotationUsed==false) {
webMethodAnnotationUsed=true;
// reset the list, this is the first annotated method we find
list.clear();
}
if (wm!=null) {
list.add(m);
} else {
if (!webMethodAnnotationUsed && !m.getDeclaringClass().equals(java.lang.Object.class)) {
list.add(m);
}
}
}
return list.toArray(new Method[0]);
|
public java.lang.String | className()
return getGeneratedClass();
|
public com.sun.corba.ee.impl.codegen.ClassGenerator | evaluate()
_clear();
if (packageName != null) {
_package(packageName);
}
_interface(PUBLIC, serviceIntfName);
for(int i = 0; i < intfMethods.length; i++) {
printMethod(intfMethods[i]);
}
_end();
return _classGenerator() ;
|
public void | generate(java.io.OutputStream out)Generate the code to the specified output stream.
IndentingWriter p = new IndentingWriter(new OutputStreamWriter(out));
p.pln("");
if (packageName != null) {
p.pln("package " + packageName + ";");
}
p.pln("");
p.plnI("public interface " + serviceIntfSimpleName + " {");
p.pln("");
// each remote method
for(int i = 0; i < intfMethods.length; i++) {
printMethod(p, intfMethods[i]);
}
p.pOln("}");
p.close();
|
public java.lang.String | getGeneratedClass()Get the fully qualified name of the generated class.
Note: the remote/local implementation class is in the same package
as the bean class, NOT the remote/local interface.
return serviceIntfName;
|
public java.lang.String | getPackageName()
return sib.getPackage().getName()+".internal.jaxws";
|
public java.lang.String | getServiceIntfName()
String serviceIntfSimpleName = sib.getSimpleName();
if (serviceIntfSimpleName.endsWith("EJB")) {
return serviceIntfSimpleName.substring(0, serviceIntfSimpleName.length()-3);
} else {
return serviceIntfSimpleName+"SEI";
}
|
private void | printMethod(sun.rmi.rmic.IndentingWriter p, java.lang.reflect.Method m)Generate the code for a single method.
p.pln("");
// print method signature and exceptions
p.p("public " + printType(m.getReturnType()) + " "
+ m.getName() + "(");
Class[] params = m.getParameterTypes();
for(int i = 0; i < params.length; i++) {
if (i != 0)
p.p(", ");
p.p(printType(params[i]) + " param" + i);
}
p.p(") ");
Class[] exceptions = m.getExceptionTypes();
boolean throwsRemoteException = false;
for(int i = 0; i < exceptions.length; i++) {
if (i == 0)
p.p("throws ");
else
p.p(", ");
String nextEx = exceptions[i].getName();
p.p(nextEx);
if( nextEx.equals("java.rmi.RemoteException") ) {
throwsRemoteException = true;
}
}
if( exceptions.length == 0 ) {
p.p("throws java.rmi.RemoteException");
} else if (!throwsRemoteException) {
p.p(", java.rmi.RemoteException");
}
p.pln(";");
p.pln("");
|
private void | printMethod(java.lang.reflect.Method m)
boolean throwsRemoteException = false;
List<Type> exceptionList = new LinkedList<Type>();
for(Class exception : m.getExceptionTypes()) {
exceptionList.add(Type.type(exception));
if( exception.getName().equals("java.rmi.RemoteException") ) {
throwsRemoteException = true;
}
}
if( !throwsRemoteException ) {
exceptionList.add(_t("java.rmi.RemoteException"));
}
_method( PUBLIC | ABSTRACT, Type.type(m.getReturnType()),
m.getName(), exceptionList);
int i = 0;
com.sun.corba.ee.spi.codegen.Expression expr = null;
for(Class param : m.getParameterTypes()) {
expr = _arg(Type.type(param), "param" + i);
i++;
}
_end();
|