Subversion Repositories bacoAlunos

Rev

Blame | Compare with Previous | Last modification | View Log | RSS feed

/*
 * Created on May 1, 2004
 *
 * by gedl
 */

package pt.utl.ist.berserk.logic.serviceManager.delegateGenerator;

/**
 * Created on May 1, 2004
 *
 * @author gedl
 *
 */

public class ParameterDeclaration
{
    private 1.5.0/docs/api/java/lang/String.html">String name;
    private 1.5.0/docs/api/java/lang/Class.html">Class type;
    /**
     * @return Returns the name.
     */

    public 1.5.0/docs/api/java/lang/String.html">String getName()
    {
        return this.name;
    }
    /**
     * @param name The name to set.
     */

    public void setName(1.5.0/docs/api/java/lang/String.html">String name)
    {
        this.name = name;
    }
    /**
     * @return Returns the type.
     */

    public 1.5.0/docs/api/java/lang/Class.html">Class getType()
    {
        return this.type;
    }
    /**
     * @param type The type to set.
     */

    public void setType(1.5.0/docs/api/java/lang/Class.html">Class type)
    {
        this.type = type;
    }
   
    public 1.5.0/docs/api/java/lang/String.html">String toString()
    {
        1.5.0/docs/api/java/lang/String.html">String result = "ParameterType[";
        result += "Name: " + this.getName()+"";
        result += "Type: "+this.getType()+"";
        result += "]";
       
        return result;
    }
}