Project

General

Profile

Download (1.07 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2007 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.common;
11

    
12

    
13
import org.apache.log4j.Logger;
14

    
15
import eu.etaxonomy.cdm.model.media.ReferencedMedia;
16

    
17
import javax.persistence.*;
18
import javax.xml.bind.annotation.XmlAccessType;
19
import javax.xml.bind.annotation.XmlAccessorType;
20
import javax.xml.bind.annotation.XmlType;
21

    
22
/**
23
 * @author m.doering
24
 * @version 1.0
25
 * @created 08-Nov-2007 13:06:25
26
 */
27
@XmlAccessorType(XmlAccessType.FIELD)
28
@XmlType(name = "Figure")
29
@Entity
30
public class Figure extends ReferencedMedia {
31
	private static final long serialVersionUID = -1712467725277327725L;
32
	@SuppressWarnings("unused")
33
	private static final Logger logger = Logger.getLogger(Figure.class);
34
	
35
	/**
36
	 * Factory method
37
	 * @return
38
	 */
39
	public static Figure NewInstance(){
40
		return new Figure();
41
	}
42
	
43
	/**
44
	 * Constructor
45
	 */
46
	protected Figure() {
47
		super();
48
	}
49
	
50
}
(9-9/44)