Uses of Class
org.sciplore.resources.Citation

Packages that use Citation
org.sciplore.resources   
 

Uses of Citation in org.sciplore.resources
 

Methods in org.sciplore.resources that return Citation
static Citation Citation.getCitation(Citation c)
          Returns a matching Citation object from the database for an Citation object.
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 Citation Citation.getCitation(Integer id)
          Returns a Citation object from the database for an identifier.
static Citation Citation.sync(Citation cit)
          Synchronizes a Citation object with a record from the database.
 

Methods in org.sciplore.resources that return types with arguments of type Citation
 Set<Citation> Document.getCitations()
          Returns the Citations by this Document.
static List<Citation> Citation.getCitations()
          Returns a list of all citations in database.
 Set<Citation> Document.getRcvdCitations()
          Returns the citations this document received.
 

Methods in org.sciplore.resources with parameters of type Citation
 void Document.addCitation(Citation c)
          Add a Citation from this document.
 void Document.addRcvdCitation(Citation c)
          Add a received Citation of this Document.
static Citation Citation.getCitation(Citation c)
          Returns a matching Citation object from the database for an Citation object.
static Citation Citation.sync(Citation cit)
          Synchronizes a Citation object with a record from the database.
 

Method parameters in org.sciplore.resources with type arguments of type Citation
 void Document.setCitations(Set<Citation> citations)
          Sets the citations by this document.
 void Document.setRcvdCitations(Set<Citation> rcvdCitations)
          Sets the citations received by this document.