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

org.jboss.reflect.plugins.javassist.JavassistParameterInfo Maven / Gradle / Ivy

The newest version!
/*
* JBoss, Home of Professional Open Source
* Copyright 2006, JBoss Inc., and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.jboss.reflect.plugins.javassist;

import org.jboss.reflect.plugins.AnnotationHelper;
import org.jboss.reflect.spi.AnnotationValue;
import org.jboss.reflect.spi.ParameterInfo;
import org.jboss.reflect.spi.TypeInfo;
import org.jboss.util.JBossStringBuilder;

/**
 * JavassistParameterInfo.
 * 
 * @author Adrian Brock
 * @version $Revision: 103926 $
 */
public class JavassistParameterInfo extends JavassistAnnotatedInfo implements ParameterInfo
{
   /** The serialVersionUID */
   private static final long serialVersionUID = 7388866103874412735L;

   /** The annotated info */
   private final JavassistAnnotatedParameterInfo annotated;
   
   /** The name */
   private final String name;
   
   /** The paramter type */
   private final TypeInfo parameterType;
   
   /**
    * Create a new JavassistParameterInfo.
    * 
    * @param annotationHelper the annotation helper
    * @param annotated the annotated object
    * @param index the index
    * @param parameterType the type
    */
   public JavassistParameterInfo(AnnotationHelper annotationHelper, JavassistAnnotatedParameterInfo annotated, int index, TypeInfo parameterType)
   {
      super(annotationHelper);
      this.annotated = annotated;
      this.name = "arg" + index;
      this.parameterType = parameterType;
   }

   /**
    * Get the annotated info
    * 
    * @return the annotated
    */
   protected JavassistAnnotatedInfo getAnnotated()
   {
      return annotated;
   }
   
   public String getName()
   {
      return name;
   }

   public TypeInfo getParameterType()
   {
      return parameterType;
   }

   @Override
   public boolean equals(Object obj)
   {
      if (this == obj)
         return true;
      if (obj == null || obj instanceof ParameterInfo == false)
         return false;
      
      ParameterInfo other = (ParameterInfo) obj;
      return parameterType.equals(other.getParameterType());
   }

   @Override
   protected int getHashCode()
   {
      return getName().hashCode();
   }

   @Override
   public void toShortString(JBossStringBuilder buffer)
   {
      buffer.append(getParameterType());
   }

   @Override
   protected void toString(JBossStringBuilder buffer)
   {
      buffer.append("type=").append(getParameterType());
      super.toString(buffer);
   }
   
   public AnnotationValue[] getAnnotations()
   {
      if (annotationsArray == NOT_CONFIGURED)
      {
         annotated.createParameterAnnotations(); //Calls setAnnotations() so annotationsArray is created
      }
      return annotationsArray;
   }
   
   public void setAnnotations(AnnotationValue[] annotations)
   {
      annotationsArray = annotations;
      setupAnnotations(annotations);
   }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy