def getBibTeX(self, entryId):
        """
        Convert an entry into its BibTeX reference.
        @type entryId: L{int}
        @param entryId: The I{id} of the entry. 
        @rtype: L{str}
        @return: The BibTeX reference.
        """

        dictItem = EntryDict()
        dictItem[EntryListColumn.ID] = entryId
        BibTeX_Ref = list(dictItem.items())
        return BibTeX_Ref
 def getBibTeX(self, entryId):
     dictItem = EntryDict()
     dictItem[EntryListColumn.ID] = entryId
     BibTeX_Ref = list(dictItem.items())
     return BibTeX_Ref