fix #6799: add totalCount of ticks as totalwork and start the progress monitor when...
[cdmlib.git] / cdmlib-io / src / main / java / eu / etaxonomy / cdm / io / markup / FootnoteDataHolder.java
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 footnotes. Maybe preliminary.
16 * @author a.mueller
17 * @date 28.07.2011
18 */
19 public class FootnoteDataHolder {
20 public String ref;
21 public String id;
22 public String string;
23
24 public boolean isRef(){
25 return StringUtils.isNotBlank(this.ref);
26 }
27
28 }