MapKeyOrElementsArguments.java

  1. package uk.co.jemos.podam.api;

  2. import java.io.Serializable;
  3. import java.lang.reflect.Type;

  4. import uk.co.jemos.podam.common.AttributeStrategy;

  5. /**
  6.  * Contains attributes for the arguments to pass to the factory method to fill
  7.  * map key or elements.
  8.  *
  9.  * @author Marco Tedone
  10.  *
  11.  */
  12. public class MapKeyOrElementsArguments extends AbstractMapArguments implements
  13.         Serializable {

  14.     private static final long serialVersionUID = 1L;

  15.     /** The strategy to use to fill the Map key or value element. */
  16.     private AttributeStrategy<?> elementStrategy;

  17.     /**
  18.      * The generic type arguments for the current generic class
  19.      * instance.
  20.      */
  21.     private Type[] genericTypeArgs;

  22.     /**
  23.      * @return the elementStrategy
  24.      */
  25.     public AttributeStrategy<?> getElementStrategy() {
  26.         return elementStrategy;
  27.     }

  28.     /**
  29.      * @param elementStrategy
  30.      *            the elementStrategy to set
  31.      */
  32.     public void setElementStrategy(AttributeStrategy<?> elementStrategy) {
  33.         this.elementStrategy = elementStrategy;
  34.     }

  35.     /**
  36.      * @return the genericTypeArgs
  37.      */
  38.     public Type[] getGenericTypeArgs() {
  39.         return genericTypeArgs;
  40.     }

  41.     /**
  42.      * @param genericTypeArgs
  43.      *            the genericTypeArgs to set
  44.      */
  45.     public void setGenericTypeArgs(Type[] genericTypeArgs) {
  46.         this.genericTypeArgs = genericTypeArgs.clone();
  47.     }

  48. }