Uses of Class
ch.hsr.bieridee.domain.Tag

Packages that use Tag
ch.hsr.bieridee.domain   
ch.hsr.bieridee.models   
 

Uses of Tag in ch.hsr.bieridee.domain
 

Methods in ch.hsr.bieridee.domain that return types with arguments of type Tag
 java.util.List<Tag> Beer.getTags()
           
 

Method parameters in ch.hsr.bieridee.domain with type arguments of type Tag
 void Beer.setTags(java.util.List<Tag> tags)
           
 

Constructor parameters in ch.hsr.bieridee.domain with type arguments of type Tag
Beer(long id, java.lang.String name, java.lang.String brand, java.lang.String picture, java.util.List<Tag> tags, Beertype type, Brewery brewery)
          Creates a Beer.
Beer(java.lang.String name, java.lang.String brand, java.lang.String picture, java.util.List<Tag> tags, Beertype type, Brewery brewery)
          Creates a Beer.
 

Uses of Tag in ch.hsr.bieridee.models
 

Methods in ch.hsr.bieridee.models that return Tag
 Tag TagModel.getDomainObject()
           
 

Methods in ch.hsr.bieridee.models that return types with arguments of type Tag
 java.util.List<Tag> BeerModel.getTags()