1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 package org.christianschenk.confluence.plugin.bibsonomy.model;
20
21 public class BibTex extends Resource {
22
23 private String bibtexKey;
24 private String author;
25 private String editor;
26 private String year;
27 private String booktitle;
28 private String entrytype;
29 private String crossref;
30 private String pages;
31 private String privnote;
32 private String misc;
33
34 public String getBibtexKey() {
35 return this.bibtexKey;
36 }
37
38 public void setBibtexKey(String bibtexKey) {
39 this.bibtexKey = bibtexKey;
40 }
41
42 public String getAuthor() {
43 return this.author;
44 }
45
46 public void setAuthor(String author) {
47 this.author = author;
48 }
49
50 public String getEditor() {
51 return this.editor;
52 }
53
54 public void setEditor(String editor) {
55 this.editor = editor;
56 }
57
58 public String getYear() {
59 return this.year;
60 }
61
62 public void setYear(String year) {
63 this.year = year;
64 }
65
66 public String getBooktitle() {
67 return this.booktitle;
68 }
69
70 public void setBooktitle(String booktitle) {
71 this.booktitle = booktitle;
72 }
73
74 public String getEntrytype() {
75 return this.entrytype;
76 }
77
78 public void setEntrytype(String entrytype) {
79 this.entrytype = entrytype;
80 }
81
82 public String getCrossref() {
83 return this.crossref;
84 }
85
86 public void setCrossref(String crossref) {
87 this.crossref = crossref;
88 }
89
90 public String getPages() {
91 return this.pages;
92 }
93
94 public void setPages(String pages) {
95 this.pages = pages;
96 }
97
98 public String getPrivnote() {
99 return this.privnote;
100 }
101
102 public void setPrivnote(String privnote) {
103 this.privnote = privnote;
104 }
105
106 public String getMisc() {
107 return this.misc;
108 }
109
110 public void setMisc(String misc) {
111 this.misc = misc;
112 }
113 }