View Javadoc

1   package org.codehaus.ivory.attributes;
2   
3   /***
4    * An Attribute which specifies the returned parameter type for SOAP
5    * serialization.
6    * 
7    * @author <a href="mailto:dan@envoisolutions.com">Dan Diephouse</a>
8    * @since Sep 23, 2003
9    */
10  public class ParameterType
11  {
12      private Class clazz;
13      
14      public ParameterType( Class clazz )
15      {
16          this.clazz = clazz;
17      }
18      
19      public Class getParameterType()
20      {
21          return clazz;
22      }
23  }