View Javadoc

1   /*
2    */
3   package fr.kaamelot.reporter;
4   
5   
6   /**
7    * @author Kaamelot - 2006
8    * <b>Description :</b>
9    * @version $Id$
10   * @history <ul>
11   * <li/>Date    		- UserId   - Observations
12   * <li/>22 jun. 2006 - Kaamelot - Initialisation de la classe.
13   * </ul>
14   */
15  public abstract class AMappable implements IMappable {
16  	protected Object object;
17  	/**
18  	 */
19  	public AMappable(final Object _object) {
20  		object = _object;
21  	}
22  
23  	/** @see com.bnpparibas.jira.model.report.IMappable#getKey()
24  	 */
25  	public abstract Object getKey();
26  
27  	/**
28  	 * @return
29  	 */
30  	public Object getObject() {
31  		return object;
32  	}
33  
34  }