Project

General

Profile

Download (635 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2021 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
package eu.etaxonomy.cdm.model.reference;
10

    
11
/**
12
 * @author a.mueller
13
 * @since 24.03.2021
14
 */
15
public interface ISeriesPart {
16

    
17
    /**
18
     * Returns the series part for this printed unit
19
     */
20
    public String getSeriesPart();
21

    
22
    /**
23
     * Sets the series part for this printed unit
24
     * @param seriesPart
25
     */
26
    public void setSeriesPart(String seriesPart);
27
}
(24-24/41)