Package org.apache.muse.tools.inspector

Examples of org.apache.muse.tools.inspector.JavaMethod


  protected void generateOperations(ClassInfo classInfo, StringBuffer code, boolean generateBody) {
    Capability capability = classInfo.getCapability();
   
    for(Iterator i=capability.getOperations().iterator(); i.hasNext();) {
      JavaMethod method = (JavaMethod)i.next();   
     
      indent(code);
      code.append("public "
        + convertType(method.getReturnType(), classInfo)
        + " " + getMethodName(method));
     
      Class[] params = method.getParameterTypes();
      QName[] paramNames = method.getParameterTypeNames();
      code.append("(");
     
      if (params.length > 0) {
        int j;
       
View Full Code Here

TOP

Related Classes of org.apache.muse.tools.inspector.JavaMethod

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.