root/trunk/cdmlib/cdmlib-model/src/main/java/eu/etaxonomy/cdm/model/reference/IWebPage.java

Revision 10919, 0.9 kB (checked in by a.mueller, 18 months ago)

merge 3.0.2 to trunk

Line 
1/**
2* Copyright (C) 2009 EDIT
3* European Distributed Institute of Taxonomy
4* http://www.e-taxonomy.eu
5*
6* The contents of this file are subject to the Mozilla Public License Version 1.1
7* See LICENSE.TXT at the top of this package for the full license terms.
8*/ 
9
10package eu.etaxonomy.cdm.model.reference;
11
12/**
13 * This interface represents electronic publications available on the world wide web.
14 * <P>
15 * This class corresponds, according to the TDWG ontology, to the publication type
16 * term (from PublicationTypeTerm): "WebPage".
17 */ 
18 public interface IWebPage extends IPublicationBase {
19
20         
21                /**
22                 * Returns this websites inReference (e.g. the underlying database).
23                 * @return the inReference
24                 */
25                public Reference getInReference();
26               
27               
28                /**
29                 * Sets this websites inreference (e.g. the underlying database)
30                 * @param inReference The inReference.
31                 */
32                public void setInReference(Reference inReference);
33 
34}
Note: See TracBrowser for help on using the browser.