View Javadoc

1   package org.ocltf.model;
2   
3   
4   /***
5    * Specifies a "facade" for an underlying parameter. 
6    *
7    * @author Chad Brandon
8    */
9   public interface ParameterFacade extends ElementFacade {
10  
11  	/***
12  	 * Returns true if the parameter is a
13  	 * return parameter type
14  	 * @return true if its a return parameter, false otherwise.
15  	 */
16  	public boolean isReturnType();
17  
18  }