Package de.undercouch.citeproc
Interface AbbreviationProvider
-
- All Known Implementing Classes:
DefaultAbbreviationProvider
public interface AbbreviationProviderRetrieves abbreviations for titles, authorities, institution names, etc.- Author:
- Michel Kraemer
-
-
Field Summary
Fields Modifier and Type Field Description static StringDEFAULT_LIST_NAMEA list name that can be used for default abbreviations that do not have to be enabled viaCSL.setAbbreviations(String)
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CSLAbbreviationListgetAbbreviations(String name)Retrieves an abbreviation list with a given name
-
-
-
Field Detail
-
DEFAULT_LIST_NAME
static final String DEFAULT_LIST_NAME
A list name that can be used for default abbreviations that do not have to be enabled viaCSL.setAbbreviations(String)- See Also:
- Constant Field Values
-
-
Method Detail
-
getAbbreviations
CSLAbbreviationList getAbbreviations(String name)
Retrieves an abbreviation list with a given name- Parameters:
name- the list's name- Returns:
- the abbreviation list or null if there is no such list
-
-