All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.exolab.javasource.JMethodSignature Maven / Gradle / Ivy

/**
 * Redistribution and use of this software and associated documentation
 * ("Software"), with or without modification, are permitted provided
 * that the following conditions are met:
 *
 * 1. Redistributions of source code must retain copyright
 *    statements and notices.  Redistributions must also contain a
 *    copy of this document.
 *
 * 2. Redistributions in binary form must reproduce the
 *    above copyright notice, this list of conditions and the
 *    following disclaimer in the documentation and/or other
 *    materials provided with the distribution.
 *
 * 3. The name "Exolab" must not be used to endorse or promote
 *    products derived from this Software without prior written
 *    permission of Intalio, Inc.  For written permission,
 *    please contact [email protected].
 *
 * 4. Products derived from this Software may not be called "Exolab"
 *    nor may "Exolab" appear in their names without prior written
 *    permission of Intalio, Inc. Exolab is a registered
 *    trademark of Intalio, Inc.
 *
 * 5. Due credit should be given to the Exolab Project
 *    (http://www.exolab.org/).
 *
 * THIS SOFTWARE IS PROVIDED BY INTALIO, INC. AND CONTRIBUTORS
 * ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT
 * NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
 * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL
 * INTALIO, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
 * OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 * Copyright 1999-2002 (C) Intalio, Inc. All Rights Reserved.
 *
 * $Id: JMethodSignature.java 6623 2006-12-28 23:13:20Z wguttmn $
 */
package org.exolab.javasource;

import java.util.Vector;

/**
 * A class which holds information about the signtaure of a JMethod. The code in
 * this package was modelled after the Java Reflection API as much as possible
 * to reduce the learning curve.
 *
 * @author Keith Visco
 * @version $Revision: 6623 $ $Date: 2004-12-03 11:57:33 -0700 (Fri, 03 Dec 2004) $
 */
public final class JMethodSignature extends JAnnotatedElementHelper {

    /** The set of modifiers for this JMethodSignature. */
    private JModifiers _modifiers = null;
    /** The return type of this method. */
    private JType _returnType     = null;
    /** The name of this JMethodSignature. */
    private String _name          = null;
    /** The list of parameters of this method in order declared. */
    private final JNamedMap _params;
    /** The JavaDoc comment for this method's signature. */
    private final JDocComment _jdc;
    /** The exceptions that this method throws. */
    private final Vector _exceptions;

    /**
     * Creates a new method with the given name and "void" return type.
     *
     * @param name the method name. Must not be null.
     */
    public JMethodSignature(final String name) {
        if ((name == null) || (name.length() == 0)) {
            String err = "The method name must not be null or zero-length";
            throw new IllegalArgumentException(err);
        }

        this._jdc          = new JDocComment();
        this._returnType   = null;
        this._name         = name;
        this._modifiers    = new JModifiers();
        this._params       = new JNamedMap(3);
        this._exceptions   = new Vector(1);
    } //-- JMethodSignature

    /**
     * Creates a new method with the given name and return type.
     *
     * @param name the method name. Must not be null.
     * @param returnType the return type of the method. Must not be null.
     */
    public JMethodSignature(final String name, final JType returnType) {
        this(name);
        if (returnType == null) {
            String err = "The return type must not be null or zero-length";
            throw new IllegalArgumentException(err);
        }
        this._returnType = returnType;
    } //-- JMethodSignature

    /**
     * Adds the given Exception to this JMethodSignature's throws clause.
     *
     * @param exp the JClass representing the Exception
     */
    public void addException(final JClass exp) {
        if (exp == null) { return; }

        //-- make sure exception is not already added
        String expClassName = exp.getName();
        for (int i = 0; i < _exceptions.size(); i++) {
            JClass jClass = (JClass) _exceptions.elementAt(i);
            if (expClassName.equals(jClass.getName())) { return; }
        }
        //-- add exception
        _exceptions.addElement(exp);
    } //-- addException

    /**
     * Adds the given parameter to this JMethodSignature's list of parameters.
     *
     * @param parameter the parameter to add to the this JMethodSignature's list
     *            of parameters.
     */
    public void addParameter(final JParameter parameter) {
        if (parameter == null) { return; }

        String pName = parameter.getName();
        //-- check current params
        if (_params.get(pName) != null) {
            StringBuffer err = new StringBuffer();
            err.append("A parameter already exists for this method, ");
            err.append(_name);
            err.append(", with the name: ");
            err.append(pName);
            throw new IllegalArgumentException(err.toString());
        }

        _params.put(pName, parameter);

        //-- create comment
        _jdc.addDescriptor(JDocDescriptor.createParamDesc(pName, null));
    } //-- addParameter

    /**
     * Returns the exceptions that this JMethodSignature lists in its throws
     * clause.
     *
     * @return the exceptions that this JMethodSignature lists in its throws
     *         clause.
     */
    public JClass[] getExceptions() {
        JClass[] jclasses = new JClass[_exceptions.size()];
        _exceptions.copyInto(jclasses);
        return jclasses;
    } //-- getExceptions

    /**
     * Returns the JavaDoc comment describing this JMethodSignature.
     *
     * @return the JavaDoc comment describing this JMethodSignature.
     */
    public JDocComment getJDocComment() {
        return this._jdc;
    } //-- getJDocComment

    /**
     * Returns the modifiers for this JMethodSignature.
     *
     * @return the modifiers for this JMethodSignature.
     */
    public JModifiers getModifiers() {
        return this._modifiers;
    } //-- getModifiers

    /**
     * Returns the name of the method.
     *
     * @return the name of the method.
     */
    public String getName() {
        return this._name;
    } //-- getName

    /**
     * Returns the JParameter at the given index.
     *
     * @param index the index of the JParameter to return
     * @return the JParameter at the given index.
     */
    public JParameter getParameter(final int index) {
        return (JParameter) _params.get(index);
    } //-- getParameter

    /**
     * Returns the set of JParameters in this JMethodSignature.
     * 

* Note: the array is a copy, the parameters in the array are the * actual references. * * @return the set of JParameters in this JMethodSignature */ public synchronized JParameter[] getParameters() { JParameter[] pArray = new JParameter[_params.size()]; for (int i = 0; i < pArray.length; i++) { pArray[i] = (JParameter) _params.get(i); } return pArray; } //-- getParameters /** * Returns the JType that represents the return type for the method * signature. * * @return the JType that represents the return type for the method * signature. */ public JType getReturnType() { return _returnType; } //-- getReturnType /** * Sets the name of the method. * * @param name the name of the method */ public void setName(final String name) { this._name = name; } //-- setName /** * Sets the JavaDoc comment describing this JMethodSignature. * * @param comment the JavaDoc comment for this member * @see #getJDocComment */ public void setComment(final String comment) { _jdc.setComment(comment); } //-- setComment /** * Sets the JModifiers for this method signature. * * @param modifiers the JModifiers for this method signature */ public void setModifiers(final JModifiers modifiers) { this._modifiers = modifiers.copy(); this._modifiers.setFinal(false); } //-- setModifiers /** * Prints the method signature. A semi-colon (end-of-statement terminator * ';') will not be printed. * * @param jsw the JSourceWriter to print to. */ public void print(final JSourceWriter jsw) { print(jsw, true); } //-- print /** * Prints the method signature. A semi-colon (end-of-statement terminator * ';') will not be printed. * * @param jsw the JSourceWriter to print to. * @param printJavaDoc if true, print the JDocComment associated with this * method signature before we print the method signature */ public void print(final JSourceWriter jsw, final boolean printJavaDoc) { //------------/ //- Java Doc -/ //------------/ if (printJavaDoc) { _jdc.print(jsw); } //---------------/ //- Annotations -/ //---------------/ printAnnotations(jsw); //-----------------/ //- Method Source -/ //-----------------/ jsw.write(_modifiers.toString()); if (_modifiers.toString().length() > 0) { jsw.write(' '); } if (_returnType != null) { jsw.write(_returnType); } else { jsw.write("void"); } jsw.write(' '); jsw.write(_name); jsw.write('('); //-- any parameter annotations? boolean parameterAnnotations = false; for (int i = 0; i < _params.size(); i++) { JParameter jParameter = (JParameter) _params.get(i); if (jParameter.hasAnnotations()) { parameterAnnotations = true; break; } } //-- print parameters if (parameterAnnotations) { jsw.indent(); } for (int i = 0; i < _params.size(); i++) { if (i > 0) { jsw.write(", "); } if (parameterAnnotations) { jsw.writeln(); } JParameter jParameter = (JParameter) _params.get(i); jParameter.printAnnotations(jsw); String typeAndName = jParameter.toString(); jsw.write(typeAndName); } if (parameterAnnotations) { jsw.unindent(); } jsw.write(")"); if (_exceptions.size() > 0) { jsw.writeln(); jsw.write(" throws "); for (int i = 0; i < _exceptions.size(); i++) { if (i > 0) { jsw.write(", "); } JClass jClass = (JClass) _exceptions.elementAt(i); jsw.write(jClass.getName()); } } } //-- print /** * Returns the String representation of this JMethod, which is the method * prototype. * * @return the String representation of this JMethod, which is simply the * method prototype */ public String toString() { StringBuffer sb = new StringBuffer(); if (_returnType != null) { sb.append(_returnType); } else { sb.append("void"); } sb.append(' '); sb.append(_name); sb.append('('); //-- print parameters for (int i = 0; i < _params.size(); i++) { JParameter jParam = (JParameter) _params.get(i); if (i > 0) { sb.append(", "); } sb.append(jParam.getType().getName()); } sb.append(") "); return sb.toString(); } //-- toString /** * Returns an array containing the names of the classes of the parameters in * this JMethodSignature. For Arrays, the class name of the object type * stored in the Array is what is returned. Parameters that are primitive * types (and Arrays of primitive types) are not represented in the array of * names returned. * * @return an array containing the names of the classes of the parameters in * this JMethodSignature */ protected String[] getParameterClassNames() { Vector names = new Vector(_params.size()); for (int i = 0; i < _params.size(); i++) { JType jType = ((JParameter) _params.get(i)).getType(); while (jType instanceof JArrayType) { jType = ((JArrayType) jType).getComponentType(); } if (!jType.isPrimitive()) { JClass jclass = (JClass) jType; names.addElement(jclass.getName()); } } String[] array = new String[names.size()]; names.copyInto(array); return array; } //-- getParameterClassNames } //-- JMethodSignature





© 2015 - 2025 Weber Informatics LLC | Privacy Policy