Uses of Interface
magoffin.matt.ma2.domain.Theme

Packages that use Theme
magoffin.matt.ma2.biz   
magoffin.matt.ma2.biz.impl   
magoffin.matt.ma2.dao   
magoffin.matt.ma2.dao.hbm   
magoffin.matt.ma2.domain   
magoffin.matt.ma2.support   
magoffin.matt.ma2.web.util   
 

Uses of Theme in magoffin.matt.ma2.biz
 

Methods in magoffin.matt.ma2.biz that return Theme
 Theme SystemBiz.getDefaultTheme()
          Get a default theme.
 Theme SystemBiz.getThemeById(java.lang.Long themeId)
          Get a Theme by its ID.
 Theme DomainObjectFactory.newThemeInstance()
          Get a new Theme instance.
 

Methods in magoffin.matt.ma2.biz that return types with arguments of type Theme
 java.util.List<Theme> SystemBiz.getAvailableThemes()
          Get a list of available themes.
 

Methods in magoffin.matt.ma2.biz with parameters of type Theme
 void SystemBiz.deleteTheme(Theme theme, BizContext context)
          Delete a Theme.
 void SystemBiz.exportTheme(Theme theme, java.io.OutputStream out, java.io.File baseDirectory, BizContext context)
          Export a Theme, and associated resources.
 org.springframework.core.io.Resource SystemBiz.getThemeResource(Theme theme, java.lang.String path, BizContext context)
          Get a Theme resource.
 java.lang.Long SystemBiz.storeTheme(Theme theme, BizContext context)
          Store a Theme in the back end.
 

Uses of Theme in magoffin.matt.ma2.biz.impl
 

Methods in magoffin.matt.ma2.biz.impl that return Theme
 Theme SystemBizImpl.getDefaultTheme()
           
 Theme SystemBizImpl.getThemeById(java.lang.Long themeId)
           
 Theme JAXBDomainObjectFactory.newThemeInstance()
           
 

Methods in magoffin.matt.ma2.biz.impl that return types with arguments of type Theme
 java.util.List<Theme> SystemBizImpl.getAvailableThemes()
           
 

Methods in magoffin.matt.ma2.biz.impl with parameters of type Theme
 void SystemBizImpl.deleteTheme(Theme theme, BizContext context)
           
 void SystemBizImpl.exportTheme(Theme theme, java.io.OutputStream out, java.io.File baseDirectory, BizContext context)
           
 org.springframework.core.io.Resource SystemBizImpl.getThemeResource(Theme theme, java.lang.String path, BizContext context)
           
 java.lang.Long SystemBizImpl.storeTheme(Theme theme, BizContext context)
           
 

Uses of Theme in magoffin.matt.ma2.dao
 

Methods in magoffin.matt.ma2.dao that return Theme
 Theme ThemeDao.getThemeForName(java.lang.String name)
          Get a Theme by its name.
 

Methods in magoffin.matt.ma2.dao that return types with arguments of type Theme
 java.util.List<Theme> ThemeDao.findAllThemes()
          Get all available themes.
 

Methods in magoffin.matt.ma2.dao with parameters of type Theme
 int AlbumDao.reassignAlbumsUsingTheme(Theme oldTheme, Theme newTheme)
          Reassign all Albums using a particular Theme to a new Theme.
 

Uses of Theme in magoffin.matt.ma2.dao.hbm
 

Methods in magoffin.matt.ma2.dao.hbm that return Theme
 Theme HibernateThemeDao.getThemeForName(java.lang.String name)
           
 

Methods in magoffin.matt.ma2.dao.hbm that return types with arguments of type Theme
 java.util.List<Theme> HibernateThemeDao.findAllThemes()
           
 

Methods in magoffin.matt.ma2.dao.hbm with parameters of type Theme
protected  java.lang.Long HibernateThemeDao.getPrimaryKey(Theme domainObject)
           
 int HibernateAlbumDao.reassignAlbumsUsingTheme(Theme oldTheme, Theme newTheme)
           
 

Uses of Theme in magoffin.matt.ma2.domain
 

Methods in magoffin.matt.ma2.domain that return Theme
 Theme ObjectFactory.createTheme()
          Create an instance of Theme
 Theme User.getBrowseTheme()
          Gets the value of the browseTheme property.
 Theme User.getDefaultTheme()
          Gets the value of the defaultTheme property.
 Theme Album.getTheme()
          Gets the value of the theme property.
 Theme UiEdit.getTheme()
          Gets the value of the theme property.
 

Methods in magoffin.matt.ma2.domain with parameters of type Theme
 void User.setBrowseTheme(Theme value)
          Sets the value of the browseTheme property.
 void User.setDefaultTheme(Theme value)
          Sets the value of the defaultTheme property.
 void Album.setTheme(Theme value)
          Sets the value of the theme property.
 void UiEdit.setTheme(Theme value)
          Sets the value of the theme property.
 

Uses of Theme in magoffin.matt.ma2.support
 

Methods in magoffin.matt.ma2.support that return Theme
 Theme AddThemeCommand.getTheme()
           
 

Methods in magoffin.matt.ma2.support with parameters of type Theme
 void AddThemeCommand.setTheme(Theme theme)
           
 

Uses of Theme in magoffin.matt.ma2.web.util
 

Methods in magoffin.matt.ma2.web.util that return Theme
 Theme WebHelper.getRequestTheme()
          Get the saved theme from the current request.
 

Methods in magoffin.matt.ma2.web.util with parameters of type Theme
 void WebHelper.saveRequestTheme(Theme theme)
          Save a theme for the current request.