Project

General

Profile

Download (745 Bytes) 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.io.markup;
11

    
12
import org.apache.commons.lang.StringUtils;
13

    
14
/**
15
 * Data holder class for figures. Maybe preliminary.
16
 * @author a.mueller
17
 * @date 28.07.2011
18
 */
19
public class FigureDataHolder {
20
	public String ref;
21
	public String id;
22
	public String string;
23
	public String type;
24
	public String url;
25
	public String figurePart;
26
	public String num;
27

    
28
	public boolean isRef(){
29
		return StringUtils.isNotBlank(this.ref);
30
	}
31
	
32
}
(3-3/19)