| 1 | |
package de.glossmaker.bib.datastructure; |
| 2 | |
|
| 3 | |
import de.glossmaker.gloss.datastructure.IItem; |
| 4 | |
|
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
|
| 14 | |
|
| 15 | |
|
| 16 | |
|
| 17 | |
|
| 18 | |
|
| 19 | |
|
| 20 | |
|
| 21 | |
|
| 22 | |
|
| 23 | |
|
| 24 | |
|
| 25 | |
|
| 26 | |
|
| 27 | |
|
| 28 | |
|
| 29 | |
|
| 30 | 25 | public class InProceedings extends ACommonConference { |
| 31 | |
|
| 32 | |
InProceedings(String key, EBibTeXReference reference) { |
| 33 | 50 | super(key, reference); |
| 34 | 50 | } |
| 35 | |
|
| 36 | |
public InProceedings(String key, String title, String author, String booktitle, String year) { |
| 37 | 2 | super(key, EBibTeXReference.INPROCEEDINGS, title, author, booktitle, year); |
| 38 | 2 | } |
| 39 | |
|
| 40 | |
@Override |
| 41 | |
public IItem cloneItem() { |
| 42 | 1 | InProceedings clone = new InProceedings(getKey(), getTitle(), getAuthor(), getBookTitle(), getYear()); |
| 43 | 1 | clone.setItemValues(this); |
| 44 | 1 | return clone; |
| 45 | |
} |
| 46 | |
} |