com.ibm.as400.ui.framework
Class FrameworkDefaults

java.lang.Object
  extended by com.ibm.as400.ui.framework.FrameworkDefaults

public abstract class FrameworkDefaults
extends Object


Field Summary
Modifier and Type Field and Description
static int BYPASS_CACHED_RESOURCES
          Indicates that the UI framework should not use cached resource bundles.
static int m_resourceMode
          Controls whether the UI framework should use cached resource bundles.
static int USE_CACHED_RESOURCES
          Indicates that the UI framework should use cached resource bundles.
 
Constructor Summary
Constructor and Description
FrameworkDefaults()
           
 
Method Summary
Modifier and Type Method and Description
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

USE_CACHED_RESOURCES

public static final int USE_CACHED_RESOURCES
Indicates that the UI framework should use cached resource bundles. When a resource bundle is initially loaded it is added to a system cache. Subsequent requests for the resource bundle will be satisfied using this cache.

See Also:
Constant Field Values

BYPASS_CACHED_RESOURCES

public static final int BYPASS_CACHED_RESOURCES
Indicates that the UI framework should not use cached resource bundles. All requests for a particular resource bundle will cause the resources to be reloaded from an external source, such as a local hard drive or a location on the network.

See Also:
Constant Field Values

m_resourceMode

public static int m_resourceMode
Controls whether the UI framework should use cached resource bundles. Defaults to USE_CACHED_RESOURCES.

Constructor Detail

FrameworkDefaults

public FrameworkDefaults()