Project

General

Profile

Download (964 Bytes) Statistics
| Branch: | Tag: | Revision:
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

    
10
package 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
}
(22-22/28)