| org.sakaiproject.citation.api.SearchCategory
SearchCategory | public interface SearchCategory (Code) | | |
getDatabases | public java.util.List<SearchDatabase> getDatabases()(Code) | | Returns the databases contained in this category
a java.util.List containing SearchDatabase objects within this SearchCategory,null if this category does not contain any databases (if hasDatabases() returns false) |
getDescription | public String getDescription()(Code) | | Returns the description of this category
description of this category |
getDisplayName | public String getDisplayName()(Code) | | Returns the display name of this category
display name of this category |
getId | public String getId()(Code) | | Returns the id of this category
id of this category |
getSubCategories | public java.util.List<SearchCategory> getSubCategories()(Code) | | Returns the categories contained within this category
a list containing SearchCategory objects within this SearchCategory,null if this category does not contain any categories (if hasSubCategories() returns false) |
hasDatabases | public boolean hasDatabases()(Code) | | Indicates whether this category has any databases within it
true if this category contains at least one database,false otherwise |
hasSubCategories | public boolean hasSubCategories()(Code) | | Indicates whether this category has any sub-categories within it
true if this category contains at least one category,false otherwise |
isDatabaseRecommended | public boolean isDatabaseRecommended(String databaseId)(Code) | | Determines whether the given database is recommended within this category
Parameters: databaseId - id of the database to check true if the database is recommended, false otherwise (also returnsfalse if this database does not exist in this category) |
|
|