Uses of Interface
org.argouml.application.api.ConfigurationKey

Packages that use ConfigurationKey
org.argouml.application.api Provides general classes and interfaces that are fundamental to ArgoUML and ArgoUML modules. 
org.argouml.application.configuration Contains configuration factories and workers. 
org.argouml.cognitive.critics The classes at the heart of critic functionality, including classes for general critics that belong in no more specific category. 
 

Uses of ConfigurationKey in org.argouml.application.api
 

Fields in org.argouml.application.api declared as ConfigurationKey
static ConfigurationKey Notation.KEY_DEFAULT_NOTATION
          The configuration key for the preferred notation
static ConfigurationKey Notation.KEY_SHOW_STEREOTYPES
          The configuration key that indicates whether to show stereotypes in the navigation panel
static ConfigurationKey Notation.KEY_USE_GUILLEMOTS
          The configuration key that indicates whether to use guillemots or greater/lessthan characters in stereotypes.
static ConfigurationKey Notation.KEY_UML_NOTATION_ONLY
          Indicates if the user only wants to see UML notation.
static ConfigurationKey Notation.KEY_SHOW_VISIBILITY
          Indicates if the user wants to see visibility signs (public, private, protected or # + -)
static ConfigurationKey Notation.KEY_SHOW_MULTIPLICITY
          Indicates if the user wants to see multiplicity in attributes and classes
static ConfigurationKey Notation.KEY_SHOW_INITIAL_VALUE
          Indicates if the user wants to see the initial value
static ConfigurationKey Notation.KEY_SHOW_PROPERTIES
          Indicates if the user wants to see the properties (everything between braces), that is for example the concurrency
static ConfigurationKey Notation.KEY_DEFAULT_SHADOW_WIDTH
          Default value for the shadow size of classes, interfaces etc.
static ConfigurationKey Argo.KEY_STARTUP_DIR
          Key for default startup directory.
static ConfigurationKey Argo.KEY_SPLASH
          Key to show splash screen.
static ConfigurationKey Argo.KEY_PRELOAD
          Key to preload classes.
static ConfigurationKey Argo.KEY_EDEM
          Key to report usage statistics.
static ConfigurationKey Argo.KEY_PROFILE
          Key to profile initialization.
static ConfigurationKey Argo.KEY_MOST_RECENT_PROJECT_FILE
          Key for last saved project URL.
static ConfigurationKey Argo.KEY_RELOAD_RECENT_PROJECT
          Key to reload last saved project on startup.
static ConfigurationKey Argo.KEY_SCREEN_TOP_Y
          Key for screen top
static ConfigurationKey Argo.KEY_SCREEN_LEFT_X
          Key for screen left
static ConfigurationKey Argo.KEY_SCREEN_WIDTH
          Key for screen width
static ConfigurationKey Argo.KEY_SCREEN_HEIGHT
          Key for screen height
static ConfigurationKey Argo.KEY_SCREEN_SOUTHWEST_WIDTH
          Key for southwest pane width
static ConfigurationKey Argo.KEY_SCREEN_NORTHWEST_WIDTH
          Key for northwest pane width
static ConfigurationKey Argo.KEY_SCREEN_SOUTHEAST_WIDTH
          Key for southeast pane width
static ConfigurationKey Argo.KEY_SCREEN_NORTHEAST_WIDTH
          Key for northeast pane width
static ConfigurationKey Argo.KEY_SCREEN_WEST_WIDTH
          Key for west pane width
static ConfigurationKey Argo.KEY_SCREEN_EAST_WIDTH
          Key for east pane width
static ConfigurationKey Argo.KEY_SCREEN_SOUTH_HEIGHT
          Key for south pane height
static ConfigurationKey Argo.KEY_SCREEN_NORTH_HEIGHT
          Key for north pane height
static ConfigurationKey Argo.KEY_SCREEN_THEME
          Key for theme
static ConfigurationKey Argo.KEY_LOOK_AND_FEEL_CLASS
          Key for look and feel class name
static ConfigurationKey Argo.KEY_THEME_CLASS
          Key for theme class name
static ConfigurationKey Argo.KEY_USER_EMAIL
          Key for user email address
static ConfigurationKey Argo.KEY_USER_FULLNAME
          Key for user full name
 

Methods in org.argouml.application.api that return ConfigurationKey
static ConfigurationKey Configuration.makeKey(java.lang.String k1)
          Create a single component configuration key.
static ConfigurationKey Configuration.makeKey(ConfigurationKey ck, java.lang.String k1)
          Create a sub-component of an existing configuration key.
static ConfigurationKey Configuration.makeKey(java.lang.String k1, java.lang.String k2)
          Create a two-component configuration key.
static ConfigurationKey Configuration.makeKey(java.lang.String k1, java.lang.String k2, java.lang.String k3)
          Create a three-component configuration key.
static ConfigurationKey Configuration.makeKey(java.lang.String k1, java.lang.String k2, java.lang.String k3, java.lang.String k4)
          Create a four-component configuration key.
static ConfigurationKey Configuration.makeKey(java.lang.String k1, java.lang.String k2, java.lang.String k3, java.lang.String k4, java.lang.String k5)
          Create a five-component configuration key.
 

Methods in org.argouml.application.api with parameters of type ConfigurationKey
static java.lang.String Configuration.getString(ConfigurationKey key)
          Returns the string value of a configuration property.
static java.lang.String Configuration.getString(ConfigurationKey key, java.lang.String defaultValue)
          Returns the string value of a configuration property.
static int Configuration.getInteger(ConfigurationKey key)
          Returns the numeric value of a configuration property.
static double Configuration.getDouble(ConfigurationKey key, double defaultValue)
          Returns the numeric value of a configuration property.
static double Configuration.getDouble(ConfigurationKey key)
          Returns the numeric value of a configuration property.
static int Configuration.getInteger(ConfigurationKey key, int defaultValue)
          Returns the numeric value of a configuration property.
static boolean Configuration.getBoolean(ConfigurationKey key)
          Returns the boolean value of a configuration property.
static boolean Configuration.getBoolean(ConfigurationKey key, boolean defaultValue)
          Returns the boolean value of a configuration property.
static void Configuration.setString(ConfigurationKey key, java.lang.String newValue)
          Sets the string value of a configuration property.
static void Configuration.setInteger(ConfigurationKey key, int newValue)
          Sets the numeric value of a configuration property.
static void Configuration.setDouble(ConfigurationKey key, double newValue)
          Sets the numeric value of a configuration property.
static void Configuration.setBoolean(ConfigurationKey key, boolean newValue)
          Sets the boolean value of a configuration property.
static void Configuration.addListener(ConfigurationKey key, java.beans.PropertyChangeListener pcl)
          Adds a property change listener.Static for simplicity of use.
static void Configuration.removeListener(ConfigurationKey key, java.beans.PropertyChangeListener pcl)
          Removes a property change listener.
static ConfigurationKey Configuration.makeKey(ConfigurationKey ck, java.lang.String k1)
          Create a sub-component of an existing configuration key.
 

Uses of ConfigurationKey in org.argouml.application.configuration
 

Classes in org.argouml.application.configuration that implement ConfigurationKey
 class ConfigurationKeyImpl
          This class provides definition and manipulation of configuration keys.
 

Methods in org.argouml.application.configuration with parameters of type ConfigurationKey
 java.lang.String ConfigurationHandler.getString(ConfigurationKey key, java.lang.String defaultValue)
          Returns the string value of a configuration property.
 int ConfigurationHandler.getInteger(ConfigurationKey key, int defaultValue)
          Returns the numeric value of a configuration property.
 double ConfigurationHandler.getDouble(ConfigurationKey key, double defaultValue)
          Returns the numeric value of a configuration property.
 boolean ConfigurationHandler.getBoolean(ConfigurationKey key, boolean defaultValue)
          Returns the boolean value of a configuration property.
 void ConfigurationHandler.setString(ConfigurationKey key, java.lang.String newValue)
          Sets the string value of a configuration property.
 void ConfigurationHandler.setInteger(ConfigurationKey key, int value)
          Sets the numeric value of a configuration property.
 void ConfigurationHandler.setDouble(ConfigurationKey key, double value)
          Sets the numeric value of a configuration property.
 void ConfigurationHandler.setBoolean(ConfigurationKey key, boolean value)
          Sets the boolean value of a configuration property.
 void ConfigurationHandler.addListener(ConfigurationKey key, java.beans.PropertyChangeListener pcl)
          Adds a property change listener.Static for simplicity of use.
 void ConfigurationHandler.removeListener(ConfigurationKey key, java.beans.PropertyChangeListener pcl)
          Removes a property change listener.
 boolean ConfigurationHandler.hasKey(ConfigurationKey key)
          Allows query for the existence of a configuration property.
 

Constructors in org.argouml.application.configuration with parameters of type ConfigurationKey
ConfigurationKeyImpl(ConfigurationKey ck, java.lang.String k1)
          Create a sub-component of an existing configuration key.
 

Uses of ConfigurationKey in org.argouml.cognitive.critics
 

Methods in org.argouml.cognitive.critics that return ConfigurationKey
 ConfigurationKey Critic.getCriticKey()
          Returns the ConfigurationKey that the critic uses to determine if it is enabled or disabled.
 



ArgoUML © 1996-2003 (20040125)ArgoUML Project HomeArgoUML Cookbook