Package com.iizigo.db
Class PluginApplicationUI
java.lang.Object
com.iizigo.db.PluginApplicationUI
The Plug-in ApplicationUI instance holds the various images loaded from Image Descriptors and can be used as SWT Images directly, as well as other SWT allocated object such as colors.
- Author:
- Christopher Mindus
Field Summary
Modifier and TypeFieldDescriptionfinal Image
Image for database action actor.final Image
Image for input properties.final Image
Image for input an variable.final Image
Image for result of UPDATE, DELETE, INSERT.final Image
Image for result of SELECT.final Image
Image for column in result set of SELECT.final Image
Image for database table.final Image
Image for database transaction.Method Summary
Modifier and TypeMethodDescriptionGets an Image from a file name.getImage
(ImageDescriptor descriptor) Loads the image for an Image Descriptor and caches it.static PluginApplicationUI
Gets the instance of the ApplicationUI.
Field Details
imageTransaction
Image for database transaction.imageTable
Image for database table.imageInput
Image for input properties.imageInputVariable
Image for input an variable.imageResult
Image for result of UPDATE, DELETE, INSERT.imageResultSet
Image for result of SELECT.imageResultSetColumn
Image for column in result set of SELECT.imageDBActionActor
Image for database action actor.
Method Details
getInstance
Gets the instance of the ApplicationUI. The first time this is done, it must be from the SWT thread, otherwise an InternalError is thrown.- Returns:
- The singleton.
getImage
Gets an Image from a file name.- Parameters:
fileName
- The file name loads a descriptor from the "icons" folder.- Returns:
- The image, or null if not found.
getImage
Loads the image for an Image Descriptor and caches it. It will be disposed of when the plug-in exits.- Parameters:
descriptor
- The Image Descriptor or null if none.- Returns:
- The image created, null for none or when Image Descriptor is null.