Uses of Interface
edu.iu.iv.modeling.tarl.author.Author

Packages that use Author
edu.iu.iv.modeling.tarl.author   
edu.iu.iv.modeling.tarl.author.impl   
edu.iu.iv.modeling.tarl.publication   
edu.iu.iv.modeling.tarl.publication.impl   
edu.iu.iv.modeling.tarl.util   
edu.iu.iv.modeling.tarl.util.impl   
 

Uses of Author in edu.iu.iv.modeling.tarl.author
 

Methods in edu.iu.iv.modeling.tarl.author that return Author
 Author AuthorGroup.getRandomAuthor()
          Returns a random Author from the group
 Author AuthorDatabase.getNextAuthor()
          Returns the next Author in the database while iteration
 

Methods in edu.iu.iv.modeling.tarl.author with parameters of type Author
 void AuthorGroup.addAuthor(Author author)
          Adds an Author to the group
 boolean AuthorGroup.containsAuthor(Author author)
          Tests whether the Group contains the Author or not
 boolean Author.equals(Author authorInterface)
          Tests whether the current Author is the same as the specified one.
 

Uses of Author in edu.iu.iv.modeling.tarl.author.impl
 

Classes in edu.iu.iv.modeling.tarl.author.impl that implement Author
 class DefaultAuthor
          This class defines a default implementation for the AuthorInterface.
 

Methods in edu.iu.iv.modeling.tarl.author.impl that return Author
 Author DefaultAuthorGroup.getRandomAuthor()
          Returns a Random Author from the AuthorGroup
 Author DefaultAuthorDatabase.getNextAuthor()
          Returns the next Author in the database
 

Methods in edu.iu.iv.modeling.tarl.author.impl with parameters of type Author
 void DefaultAuthorGroup.addAuthor(Author author)
          Adds an Author to the group only if it is not already present in the group
 boolean DefaultAuthorGroup.containsAuthor(Author author)
          Tests whether the Group contains the Author or not
 boolean DefaultAuthorGroup.removeAuthor(Author author)
          Removes the Author from the Group
 boolean DefaultAuthor.equals(Author author)
          Tests whether the current Author is the same as the Author given by the parameter
 

Uses of Author in edu.iu.iv.modeling.tarl.publication
 

Methods in edu.iu.iv.modeling.tarl.publication with parameters of type Author
static PublicationGroup AbstractPublicationUtility.filterOnAuthorEquality(PublicationGroup publicationGroup, Author author)
          Filters based on the Author of Publication on the conditions of equality with the specified Author.
 

Uses of Author in edu.iu.iv.modeling.tarl.publication.impl
 

Methods in edu.iu.iv.modeling.tarl.publication.impl with parameters of type Author
static PublicationGroup DefaultPublicationUtility.filterOnAuthorEquality(PublicationGroup publicationGroup, Author author)
          Filters based on the Author of Publication on the conditions of equality with the specified Author.
 

Uses of Author in edu.iu.iv.modeling.tarl.util
 

Methods in edu.iu.iv.modeling.tarl.util with parameters of type Author
 void AuthorsTopicBucket.addAuthor(Author author)
          Adds an Author only if his/her Topic is the same as that of the Bucket
 

Uses of Author in edu.iu.iv.modeling.tarl.util.impl
 

Methods in edu.iu.iv.modeling.tarl.util.impl with parameters of type Author
 void DefaultAuthorsTopicBucket.addAuthor(Author author)
          Adds an Author only if his/her Topic is the same as that of the Bucket.