Uses of Class
org.sciplore.resources.Document

Packages that use Document
org.sciplore.resources   
 

Uses of Document in org.sciplore.resources
 

Methods in org.sciplore.resources that return Document
 Document Citation.getCitedDocument()
          Returns the cited Document.
 Document Citation.getCitingDocument()
          Returns the cititing Document.
 Document Spider.getDocument()
           
 Document Keyword.getDocument()
           
 Document FulltextUrl.getDocument()
           
 Document Feedback.getDocument()
           
 Document DocumentXref.getDocument()
           
 Document DocumentPerson.getDocument()
           
 Document DocumentFulltext.getDocument()
           
 Document Alert.getDocument()
          Returns the associated Document.
static Document Document.getDocument(Document d)
          Returns a Document from the database for a Document object.
static Document Document.getDocument(Integer id)
          Returns the Document for an identifier.
static Document Document.getDocument(String title)
          Returns a Document for a title.
 Document DocumentRelatedness.getDocument1()
           
 Document DocumentRelatedness.getDocument2()
           
static Document Document.getDocumentBySourceId(String source, String id)
          Returns a document for a source id.
 Document Document.getParent()
          Returns the parent document.
static Document Document.sync(Document d)
          Synchronizes a Document object with a record from the database.
 

Methods in org.sciplore.resources that return types with arguments of type Document
 Set<Document> Document.getChildren()
          Returns the children.
 Set<Document> Institution.getDocuments()
           
static List<Document> Document.getDocuments()
          Returns a list of all Documents.
static List<Document> Document.getDocuments(Short max)
          Returns a list of all Documents with a limiter of the result number as parameter.
static List<Document> Document.getDocuments(String search)
          Returns a list of Documents for a search string.
static List<Document> Document.getDocuments(String search, Short start, Short maxresults)
          Returns a list of Document for a search string.
 

Methods in org.sciplore.resources with parameters of type Document
 void Document.addChild(Document c)
          Add a child to the Document.
static Alert Alert.getAlert(User u, Document d)
          Gets the Alert object from the database for a User and a Document.
static Citation Citation.getCitation(Document cited, Document citing, Integer chapter, Integer character, Integer paragraph, Integer sentence, Integer word)
          Returns a Citation object from the database for a cited Document, a citing Document, a chapter cound, a character count, a paragraph count, a sentence count and a word count.
static Document Document.getDocument(Document d)
          Returns a Document from the database for a Document object.
 void Citation.setCitedDocument(Document citedDocument)
          Sets the cited Document.
 void Citation.setCitingDocument(Document citingDocument)
          Sets the cititing Document.
 void Spider.setDocument(Document document)
           
 void Keyword.setDocument(Document document)
           
 FulltextUrl FulltextUrl.setDocument(Document document)
           
 void Feedback.setDocument(Document document)
           
 void DocumentXref.setDocument(Document document)
           
 void DocumentPerson.setDocument(Document document)
           
 void DocumentFulltext.setDocument(Document document)
           
 void Alert.setDocument(Document document)
          Sets the Document.
 void DocumentRelatedness.setDocument1(Document document1)
           
 void DocumentRelatedness.setDocument2(Document document2)
           
 void Document.setParent(Document parent)
          Sets the parent document.
static Document Document.sync(Document d)
          Synchronizes a Document object with a record from the database.
 

Method parameters in org.sciplore.resources with type arguments of type Document
 void Document.setChildren(Set<Document> children)
          Sets the children.
 void Institution.setDocuments(Set<Document> documents)
           
 

Constructors in org.sciplore.resources with parameters of type Document
Keyword(Document doc, String keyword)
           
Keyword(Document doc, String keyword, Short type)