Uses of Class
com.randomcoder.tag.Tag

Packages that use Tag
com.randomcoder.article Article management classes. 
com.randomcoder.tag Tag-management classes. 
 

Uses of Tag in com.randomcoder.article
 

Methods in com.randomcoder.article that return Tag
 Tag ArticleTagPageCommand.getTag()
          Gets the tag associated with this command.
 

Methods in com.randomcoder.article that return types with arguments of type Tag
 List<Tag> Article.getTags()
          Gets the tags associated with this article.
 

Methods in com.randomcoder.article with parameters of type Tag
 int ArticleDao.countByTagBeforeDate(Tag tag, Date endDate)
          Counts all Article objects created before the specified date.
 Iterator<Article> ArticleDao.iterateByTag(Tag tag)
          Iterates Article objects with the given tag.
 List<Article> ArticleDao.listByTag(Tag tag)
          Lists Article objects with the given tag.
 List<Article> ArticleDao.listByTagBeforeDateInRange(Tag tag, Date endDate, int start, int limit)
          Lists Article objects created before the specified date and within the range specified.
 List<Article> ArticleDao.listByTagBetweenDates(Tag tag, Date startDate, Date endDate)
          Lists Article objects created within the specified date range.
 void ArticleTagPageCommand.setTag(Tag tag)
          Sets the tag associated with this command.
 

Method parameters in com.randomcoder.article with type arguments of type Tag
 void Article.setTags(List<Tag> tags)
          Sets the tags associated with this article.
 

Uses of Tag in com.randomcoder.tag
 

Fields in com.randomcoder.tag with type parameters of type Tag
static Comparator<Tag> Tag.DISPLAY_NAME_COMPARATOR
          Tag Comparator (by display name).
static Comparator<Tag> Tag.NAME_COMPARATOR
          Tag Comparator (by name).
 

Methods in com.randomcoder.tag that return Tag
 Tag TagDao.findByName(String name)
          Finds a given Tag by name.
 Tag TagStatistics.getTag()
          Gets the tag to which statistics apply.
 

Methods in com.randomcoder.tag that return types with arguments of type Tag
 List<Tag> TagList.getTags()
          Getter for tags property.
 List<Tag> TagDao.listAll()
          Lists all Tag objects, sorted by displayName.
 List<Tag> TagDao.listAllInRange(int start, int limit)
          Lists all Tag objects in range, sorted by displayName.
 

Methods in com.randomcoder.tag with parameters of type Tag
 int Tag.compareTo(Tag o)
          Compares this Tag to another Tag by name.
 void TagEditCommand.consume(Tag tag)
           
 void TagAddCommand.produce(Tag tag)
           
 void TagStatistics.setTag(Tag tag)
          Sets the tag to which statistics apply.
 

Method parameters in com.randomcoder.tag with type arguments of type Tag
 void TagBusinessImpl.createTag(Producer<Tag> producer)
           
 void TagBusiness.createTag(Producer<Tag> producer)
          Create a new tag.
 void TagBusinessImpl.loadTagForEditing(Consumer<Tag> consumer, Long tagId)
           
 void TagBusiness.loadTagForEditing(Consumer<Tag> consumer, Long tagId)
          Loads a tag for editing.
 void TagList.setTags(List<Tag> tags)
          Setter for tags property.
 void TagBusinessImpl.updateTag(Producer<Tag> producer, Long tagId)
           
 void TagBusiness.updateTag(Producer<Tag> producer, Long tagId)
          Update an existing tag.
 

Constructors in com.randomcoder.tag with parameters of type Tag
TagStatistics(Tag tag, int articleCount)
          Creates a new TagStatistics object with the given tag and article count.
 

Constructor parameters in com.randomcoder.tag with type arguments of type Tag
TagList(List<Tag> tags)
          Creates a new TagList populated with the given tag list.
 



Copyright © 2006-2010 Craig Condit. All Rights Reserved.