Package | Description |
---|---|
hu.juranyi.zsolt.pubsearch.crawl |
Crawler engine, with the HTTP downloader and the publication info parser class.
|
hu.juranyi.zsolt.pubsearch.data |
Entity classes, database connection and import/export mechanisms.
|
hu.juranyi.zsolt.pubsearch.gui.tab |
Tabs of the main window.
|
Modifier and Type | Method and Description |
---|---|
Publication |
PubPageCrawler.getPublication() |
Modifier and Type | Method and Description |
---|---|
java.util.List<Publication> |
PubListCrawler.getPublications() |
java.util.List<Publication> |
PubListHTMLCrawler.getPublications() |
Modifier and Type | Method and Description |
---|---|
static Publication |
Publication.getReferenceFor(java.lang.String authors,
java.lang.String title,
int year,
PDatabase pdb)
A Publication object is identified by four fields: authors, title, year and pdb
(logically, not in the database!)
|
Modifier and Type | Method and Description |
---|---|
java.util.Set<Publication> |
Publication.getCitedBy() |
static java.util.List<Publication> |
Publication.searchResults(java.lang.String filterAuthors,
java.lang.String filterTitle)
Selects the matching publications from the database.
|
Modifier and Type | Method and Description |
---|---|
void |
Publication.addCitedBy(Publication p) |
static void |
Publication.store(Publication p)
Stores a publication in the database.
|
Modifier and Type | Method and Description |
---|---|
void |
Publication.setCitedBy(java.util.Set<Publication> citedBy) |
Constructor and Description |
---|
Exporter(Publication p)
Builds up the citation context (a VelocityContext object) from the publication
data.
|
Constructor and Description |
---|
PubTab(MainWindow mainWindow,
Publication p)
Sets up the tab.
|