Uses of Class
standup.joke.Backend

Packages that use Backend
standup.clouds This package provides the implementation for the STANDUP user interface. 
standup.joke This package provides joke generation functionality and all its related data structures. 
 

Uses of Backend in standup.clouds
 

Fields in standup.clouds declared as Backend
private  Backend CloudFrontend.backend
           
 

Methods in standup.clouds that return Backend
 Backend CloudFrontend.getBackend()
           
 

Methods in standup.clouds with parameters of type Backend
private static void CloudFrontend.createAndShowGUI(Backend backendInstance)
           
 

Constructors in standup.clouds with parameters of type Backend
CloudFrontend(JFrame _ff, int w, int h, Logger log, STANDUPSpeaker spk, Scanner scn, Backend bck, boolean interact, boolean hideDecorations)
          Constructor for the Frontend.
 

Uses of Backend in standup.joke
 

Subclasses of Backend in standup.joke
 class BackendJokeSetOnly
          A subclass of Backend that "generates" jokes purely by retrieving pre-generated jokes found in the 'joke cache'.
 class BackendJokeSetSQL
          A subclass of Backend that fulfills joke generation requests either by genuinely creating a new joke or by retrieving pre-generated jokes found in a 'joke cache' -- this value is determined by the current user profile's JokeCacheBehaviour.
 class BackendSQL
          A subclass of Backend that always genuinely generates new jokes.