| Home >> All >> com >> [ gui Javadoc ] |
com.gui: Javadoc index of package com.gui.
Package Samples:
com.gui
Classes:
JspmBrowserLauncher: BrowserLauncher is a class that provides one static method, openURL, which opens the default web browser for the current user of the system to the given URL. It may support other protocols depending on the system -- mailto, ftp, etc. -- but that has not been rigorously tested and is not guaranteed to work. Yes, this is platform-specific code, and yes, it may rely on classes on certain platforms that are not part of the standard JDK. What we're trying to do, though, is to take something that's frequently desirable but inherently platform-specific -- opening a default browser -- and allow programmers ...
JspmFileFilter: A convenience implementation of FileFilter that filters out all files except for those type extensions that it knows about. Extensions are of the type ".foo", which is typically found on Windows and Unix boxes, but not on Macinthosh. Case is ignored. Example - create a new filter that filerts out all files but gif and jpg image files: JFileChooser chooser = new JFileChooser(); ExampleFileFilter filter = new ExampleFileFilter( new String{"gif", "jpg"}, "JPEG & GIF Images") chooser.addChoosableFileFilter(filter); chooser.showOpenDialog(this);
JspmConfigReader: This class provides a simple configuration file reader. The configuration file should have the format: # comment [group] key: value The output is a hashtable with the following key structure: group.key.index The group is the group specified within '[]' brackets. The value is the value of the key and the index is the index of the occurrence of the key-value pair.
JspmConstants: This class implements the constants used throughout the Jspm Java GUI.
JspmGraphicsEnvironment: This class provides information about the graphics environment
JspmEvtConstants: This class implemenets the constants used throughout Jspm
JspmLogWriter: JSM log writer.
| Home | Contact Us | Privacy Policy | Terms of Service |