Creates a resource(file) relative to the application directory e.g.
createResource( "keybindings/emacs.xml" ); will create the file emacs.xml
in the keybindings directory off of the main subdirectory
Parameters: resourceName - a path and file name of the file to create.
Creates a set of subdirectories under the main resources directory. e.g.
createDirectories( "data/application" ); This will create the directory
structure: TS_HOME/resources/data/application
Used to provide a custom class loader for certain cases. This is
especially useful during development when we want the resource bundles to
be loaded from the source directories
Opens and returns an input stream for the given resourceName. The
resourceName is relative to the application CLASSPATH (i.e. JAR file).
Parameters: resourceName - the relative name of the resource to open an input stream for the given resourceName.
Lists all files that are found in the given subdirectory. The
subdirectory is relative to the main application directory.
Parameters: subdirectory - the subdirectory whose file names we are going to return. Onlythe name of the file is returned (no path information) Parameters: regexFilter - this is a regular expression filter that you can use to locatethe files
Used to provide a custom class loader for certain cases. This is
especially useful during development when we want the resource bundles to
be loaded from the source directories