|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Category | |
---|---|
net.sourceforge.pebble.dao | |
net.sourceforge.pebble.dao.file | |
net.sourceforge.pebble.domain | |
net.sourceforge.pebble.index | |
net.sourceforge.pebble.util |
Uses of Category in net.sourceforge.pebble.dao |
---|
Methods in net.sourceforge.pebble.dao that return Category | |
---|---|
Category |
CategoryDAO.getCategories(Blog blog)
Loads the categories. |
Methods in net.sourceforge.pebble.dao with parameters of type Category | |
---|---|
void |
CategoryDAO.addCategory(Category category,
Blog blog)
Adds the specified category. |
void |
CategoryDAO.deleteCategory(Category category,
Blog blog)
Removes the specified category. |
void |
CategoryDAO.updateCategory(Category category,
Blog blog)
Updates the specified category. |
Uses of Category in net.sourceforge.pebble.dao.file |
---|
Methods in net.sourceforge.pebble.dao.file that return Category | |
---|---|
Category |
FileCategoryDAO.getCategories(Blog blog)
Gets the categories for a particular blog. |
Category |
CategoryHandler.getRootCategory()
|
Methods in net.sourceforge.pebble.dao.file with parameters of type Category | |
---|---|
void |
FileCategoryDAO.addCategory(Category category,
Blog blog)
Adds the specified category. |
void |
FileCategoryDAO.deleteCategory(Category category,
Blog blog)
Removes the specified category. |
void |
FileCategoryDAO.updateCategory(Category updatedCategory,
Blog blog)
Updates the specified category. |
Uses of Category in net.sourceforge.pebble.domain |
---|
Methods in net.sourceforge.pebble.domain that return Category | |
---|---|
Category |
Blog.getCategory(java.lang.String id)
Gets a specific category. |
Category |
CategoryBuilder.getCategory(java.lang.String id)
Gets (and creates if necessary), the specified category. |
Category |
Category.getParent()
Gets the parent of thie category. |
Category |
Blog.getRootCategory()
Gets the root category for this blog. |
Category |
CategoryBuilder.getRootCategory()
Gets the root category. |
Methods in net.sourceforge.pebble.domain that return types with arguments of type Category | |
---|---|
java.util.Set<Category> |
BlogEntry.getCategories()
Gets the category of this blog entry. |
java.util.List<Category> |
Blog.getCategories()
Gets the categories associated with this blog. |
java.util.List<Category> |
CategoryBuilder.getCategories()
Gets a collection containing all blog categories, ordered by category name. |
java.util.List<Category> |
CategoryBuilder.getCategories(Category category)
|
Methods in net.sourceforge.pebble.domain with parameters of type Category | |
---|---|
void |
BlogEntry.addCategory(Category category)
Sets the category of this blog entry. |
void |
Blog.addCategory(Category category)
Adds a category. |
void |
CategoryBuilder.addCategory(Category category)
Adds a category. |
void |
Category.addSubCategory(Category category)
Adds a sub-category. |
java.util.List<Category> |
CategoryBuilder.getCategories(Category category)
|
java.util.List |
Blog.getRecentPublishedBlogEntries(Category category)
Gets the most recent published blog entries for a given category, the number of which is taken from the recentBlogEntriesOnHomePage property. |
boolean |
Category.hasParent(Category category)
Determines whether this category has the specified parent. |
boolean |
BlogEntry.inCategory(Category category)
Determines whether this blog entry is in the specified category. |
void |
Blog.removeCategory(Category category)
Removes a category. |
void |
CategoryBuilder.removeCategory(Category category)
Removes a category. |
void |
Category.removeSubCategory(Category category)
Removes a sub-category. |
void |
Category.setParent(Category parent)
Sets the parent of this category. |
void |
Blog.setRootCategory(Category category)
Sets the root category for this blog. |
Constructors in net.sourceforge.pebble.domain with parameters of type Category | |
---|---|
CategoryBuilder(Blog blog,
Category rootCategory)
Creates a new instance. |
Uses of Category in net.sourceforge.pebble.index |
---|
Methods in net.sourceforge.pebble.index with parameters of type Category | |
---|---|
java.util.List<java.lang.String> |
CategoryIndex.getRecentBlogEntries(Category category)
Gets the the list of blog entries for a given category. |
Uses of Category in net.sourceforge.pebble.util |
---|
Methods in net.sourceforge.pebble.util with parameters of type Category | |
---|---|
static void |
Utilities.moveBlogEntriesFromCategory(Blog blog,
Category from,
Category to)
Moves blog entries from one category to another. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |