remove old and misleading titleCache length
[cdmlib.git] / cdmlib-model / src / main / java / eu / etaxonomy / cdm / model / reference / IProceedings.java
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 * This interface represents conference proceedings. Proceedings are a
13 * collection of academic papers that are published in the context of an
14 * academic conference. Each paper typically is quite isolated from the other
15 * papers in the proceedings. Proceedings are published in-house, by the
16 * organizing institution of the conference, or via an academic publisher.
17 * <P>
18 * This class corresponds, according to the TDWG ontology, to the publication type
19 * term (from PublicationTypeTerm): "ConferenceProceedings".
20 */
21 public interface IProceedings extends IPrintedUnitBase{
22
23 /**
24 * Returns the organization which published this reference
25 */
26 public String getOrganization();
27
28 /**
29 * Sets the organization which published this reference
30 */
31 public void setOrganization(String organization);
32 }