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 This package defines the fundamental elements of the cognitive support system, such as the Designer, Poster and ToDoItem. 
org.argouml.cognitive.critics The classes at the heart of critic functionality, including classes for general critics that belong in no more specific category. 
org.argouml.notation Provides generic support for different notation displays. 
org.argouml.notation.ui UI support for notation features. 
org.argouml.persistence Contains support for persisting projects to some media. 
org.argouml.uml.ui = PROPERTIES PANELS, this and sub-packages contain an implementation of prop panels (in swing) for nearly all UML model elements; also all supporting models and actions. 
 

Uses of ConfigurationKey in org.argouml.application.api
 

Fields in org.argouml.application.api declared as ConfigurationKey
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_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_NUMBER_LAST_RECENT_USED
          Key for number of last recently used file entries in menu list.
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_SMOOTH_EDGES
          Key to enable smooth edges of diagram text and lines (anti-aliasing).
static ConfigurationKey Argo.KEY_USER_EMAIL
          Key for user email address.
static ConfigurationKey Argo.KEY_USER_FULLNAME
          Key for user full name.
static ConfigurationKey Argo.KEY_USER_IMPORT_CLASSPATH
          Key for user java reverse engineering classpath.
static ConfigurationKey Argo.KEY_INPUT_SOURCE_ENCODING
          Key for input source file encoding used in RE.
static ConfigurationKey Argo.KEY_XMI_STRIP_DIAGRAMS
          Key to store setting of stripping diagrams on XMI import.
static ConfigurationKey Argo.KEY_DEFAULT_MODEL
          Key to store profile/default model.
static ConfigurationKey Argo.KEY_USER_EXPLORER_PERSPECTIVES
          Key for user explorer perspectives.
static ConfigurationKey Argo.KEY_LOCALE
          Key for selecting the locale.
 

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

Methods in org.argouml.application.api with parameters of type ConfigurationKey
static String Configuration.getString(ConfigurationKey key)
          Returns the string value of a configuration property.
static String Configuration.getString(ConfigurationKey key, 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, 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, PropertyChangeListener pcl)
          Adds a property change listener.Static for simplicity of use.
static void Configuration.removeListener(ConfigurationKey key, PropertyChangeListener pcl)
          Removes a property change listener.
static void Configuration.removeKey(ConfigurationKey key)
           
static ConfigurationKey Configuration.makeKey(ConfigurationKey ck, 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
 String ConfigurationHandler.getString(ConfigurationKey key, 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, 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, PropertyChangeListener p)
          Adds a property change listener.Static for simplicity of use.
 void ConfigurationHandler.removeListener(ConfigurationKey key, PropertyChangeListener p)
          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, String k1)
          Create a sub-component of an existing configuration key.
 

Uses of ConfigurationKey in org.argouml.cognitive
 

Fields in org.argouml.cognitive declared as ConfigurationKey
static ConfigurationKey Designer.AUTO_CRITIQUE
          The key to remember persistently the latest choice made for the menuitem Toggle Auto-Critique.
 

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.
 

Uses of ConfigurationKey in org.argouml.notation
 

Fields in org.argouml.notation 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_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_SHOW_TYPES
          Indicates if the user wants to see the types and parameters of attributes and operations.
static ConfigurationKey Notation.KEY_DEFAULT_SHADOW_WIDTH
          Default value for the shadow size of classes, interfaces etc.
 

Uses of ConfigurationKey in org.argouml.notation.ui
 

Methods in org.argouml.notation.ui with parameters of type ConfigurationKey
protected static boolean SettingsTabNotation.getBoolean(ConfigurationKey key)
          Get a boolean from the configuration.
 

Uses of ConfigurationKey in org.argouml.persistence
 

Fields in org.argouml.persistence declared as ConfigurationKey
static ConfigurationKey PersistenceManager.KEY_PROJECT_NAME_PATH
          The configuration key for the project file location.
static ConfigurationKey PersistenceManager.KEY_OPEN_PROJECT_PATH
          The configuration key for the "open project" file location.
static ConfigurationKey PersistenceManager.KEY_IMPORT_XMI_PATH
          The configuration key for the "import xmi" file location.
 

Uses of ConfigurationKey in org.argouml.uml.ui
 

Fields in org.argouml.uml.ui declared as ConfigurationKey
static ConfigurationKey SaveGraphicsManager.KEY_DEFAULT_GRAPHICS_FILTER
          The configuration key for the preferred graphics format.
static ConfigurationKey SaveGraphicsManager.KEY_SAVE_GRAPHICS_PATH
          The configuration key for the "save graphics" file location.
static ConfigurationKey SaveGraphicsManager.KEY_SAVEALL_GRAPHICS_PATH
          The configuration key for the "save all graphics" file location.
static ConfigurationKey SaveGraphicsManager.KEY_GRAPHICS_RESOLUTION
          The configuration key for the export graphics resolution.
 



ArgoUML © 1996-2006ArgoUML HomepageArgoUML Developers' pageArgoUML Cookbook