Uses of Class
standup.profiling.Profile

Packages that use Profile
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. 
standup.lexicon This package provides classes and interfaces that handle access and manipulation of the STANDUP lexicon. 
standup.profiling This package provides facilities for an arbitrary profileable application to be configurable through user profiles, a collection of files which can be loaded and saved to a specific folder. 
 

Uses of Profile in standup.clouds
 

Subclasses of Profile in standup.clouds
 class ProfileCloudFrontend
          This class stores all user parameters relating to the frontend.
 

Methods in standup.clouds that return Profile
 Profile CloudFrontend.loadProfile(File directory)
           
 

Methods in standup.clouds with parameters of type Profile
 boolean CloudFrontend.setProfile(Profile profile, boolean repeat)
          This sets the CloudFrontendProfile.
 

Uses of Profile in standup.joke
 

Subclasses of Profile in standup.joke
 class ProfileJokeGeneration
          A Profile relating to joke generation.
 

Methods in standup.joke with parameters of type Profile
 boolean BackendSQL.setProfile(Profile profile, boolean repeat)
          Sets this Backend to use the specified joke generation profile.
 boolean BackendJokeSetSQL.setProfile(Profile profile, boolean repeat)
          Sets this Backend to use the specified joke generation profile.
 boolean Backend.setProfile(Profile profile, boolean repeat)
          Sets this Backend to use the specified joke generation profile.
 

Uses of Profile in standup.lexicon
 

Subclasses of Profile in standup.lexicon
 class ProfileLexicon
          A Profile relating to lexical resources.
 

Methods in standup.lexicon with parameters of type Profile
 boolean LexicalComponents.setProfile(Profile profile, boolean repeat)
          Uses the lexical components specified in the given lexical Profile.
 

Uses of Profile in standup.profiling
 

Methods in standup.profiling that return Profile
 Profile Profileable.getProfile()
          Returns the Profile currently being used by this Profileable.
 Profile Profileable.loadProfile(File directory)
          Loads the Profile associated with this Profileable from the specified directory and returns it.
 

Methods in standup.profiling with parameters of type Profile
static boolean ProfileManager.addFrontendLoginProfile(Profile loginFrontendProfile)
          Tries to create the 'login' user profile, and adds the given Profile, assumed to be a ProfileCloudFrontend as 'clouds.profile';
 boolean Profileable.setProfile(Profile profile, boolean repeat)
          Attempts to use the given Profile.
static boolean ProfileManager.useProfile(String name, Profileable[] profileables, Profile[] profiles, boolean repeat)
          Alternative method of using profiles, where the Profiles themselves are provided as parameters, instead of being read from disk.