View Javadoc

1   package org.ocltf.model;
2   
3   
4   /***
5    * Specifies a "facade" for an underlying generalization. 
6    *
7    * @author Chad Brandon
8    */
9   public interface GeneralizationFacade extends ElementFacade {
10  	
11  	/***
12  	 * Returns the child of the underlying generalization
13  	 * 
14  	 * @return Object the parent of the generalization
15  	 */
16  	public Object getParent();
17  	
18  	/***
19  	 * Returns the child of the Generalization (the sub class).
20       * 
21  	 * @return Object the parent of the generalization
22  	 */
23  	public Object getChild();
24  	
25   }