Uses of Class
csheets.ext.Extension

Packages that use Extension
csheets.ext Provides an extension mechanism for the application. 
csheets.ext.assertion Provides support for user-specified and system-generated assertions. 
csheets.ext.deptree Provides customized JTree components for displaying dependencies between cells. 
csheets.ext.style Provides support for cell style, i.e. font, format, alignment, color and border. 
csheets.ext.test Provides support for test cases and test case parameters. 
csheets.ui.ext Provides an extension mechanism for the application's user interface. 
 

Uses of Extension in csheets.ext
 

Methods in csheets.ext that return Extension
 Extension ExtensionManager.getExtension(String name)
          Returns the extension with the given name.
 Extension[] ExtensionManager.getExtensions()
          Returns the extensions that have been loaded.
 Extension ExtensionManager.load(Class extensionClass)
          Instantiates the given extension class.
 Extension ExtensionManager.load(String className)
          Loads the extension with the given class name.
 Extension ExtensionManager.load(String className, URL url)
          Adds the given url to the class path, and loads the extension with the given class name.
 

Methods in csheets.ext with parameters of type Extension
 int Extension.compareTo(Extension extension)
          Compares this extension with the given extension for order.
 

Uses of Extension in csheets.ext.assertion
 

Subclasses of Extension in csheets.ext.assertion
 class AssertionExtension
          The extension for assertions.
 

Uses of Extension in csheets.ext.deptree
 

Subclasses of Extension in csheets.ext.deptree
 class DependencyTreeExtension
          The extension for dependency trees.
 

Uses of Extension in csheets.ext.style
 

Subclasses of Extension in csheets.ext.style
 class StyleExtension
          The extension for style.
 

Uses of Extension in csheets.ext.test
 

Subclasses of Extension in csheets.ext.test
 class TestExtension
          The extension for tests.
 

Uses of Extension in csheets.ui.ext
 

Fields in csheets.ui.ext declared as Extension
protected  Extension UIExtension.extension
          The name of the extension
 

Methods in csheets.ui.ext that return Extension
 Extension UIExtension.getExtension()
          Returns the extension for which this UI extension provides components.
 

Constructors in csheets.ui.ext with parameters of type Extension
UIExtension(Extension extension, UIController uiController)
          Creates a new user interface extension..