performed javacscript:fix and worked on documentation
[taxeditor.git] / taxeditor-editor / src / main / java / eu / etaxonomy / taxeditor / section / occurrence / IFacadeHolder.java
1 // $Id$
2 /**
3 * Copyright (C) 2007 EDIT
4 * European Distributed Institute of Taxonomy
5 * http://www.e-taxonomy.eu
6 *
7 * The contents of this file are subject to the Mozilla Public License Version 1.1
8 * See LICENSE.TXT at the top of this package for the full license terms.
9 */
10
11 package eu.etaxonomy.taxeditor.section.occurrence;
12
13 import eu.etaxonomy.cdm.api.facade.DerivedUnitFacade;
14
15 /**
16 * <p>IFacadeHolder interface.</p>
17 *
18 * @author n.hoffmann
19 * @created Jun 24, 2010
20 * @version 1.0
21 */
22 public interface IFacadeHolder {
23 /**
24 * <p>setFacade</p>
25 *
26 * @param facade a {@link eu.etaxonomy.cdm.api.facade.DerivedUnitFacade} object.
27 */
28 public void setFacade(DerivedUnitFacade facade);
29
30 /**
31 * <p>getFacade</p>
32 *
33 * @return a {@link eu.etaxonomy.cdm.api.facade.DerivedUnitFacade} object.
34 */
35 public DerivedUnitFacade getFacade();
36 }