Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

com.paradoxpoint.libitina.gui.* (12)com.paradoxpoint.libitina.monument.* (25)
com.paradoxpoint.libitina.option.* (15)com.paradoxpoint.libitina.tool.* (5)
com.paradoxpoint.libitina.util.* (8)

com.paradoxpoint.libitina: Javadoc index of package com.paradoxpoint.libitina.


Package Samples:

com.paradoxpoint.libitina.gui.binding
com.paradoxpoint.libitina.gui.datatransfer
com.paradoxpoint.libitina.gui
com.paradoxpoint.libitina.gui.text
com.paradoxpoint.libitina.monument
com.paradoxpoint.libitina.option
com.paradoxpoint.libitina.option.tool
com.paradoxpoint.libitina.tool
com.paradoxpoint.libitina.util

Classes:

PrintUtilities: A simple utility class that lets you very simply print an arbitrary component. Just pass the component to the PrintUtilities.printComponent. The component you want to print doesn't need a print method and doesn't have to implement any interface or do anything special at all. If you are going to be printing many times, it is marginally more efficient to first do the following: PrintUtilities printHelper = new PrintUtilities(theComponent); then later do printHelper.print(). But this is a very tiny difference, so in most cases just do the simpler PrintUtilities.printComponent(componentToBePrinted). ...
OptionAdapter: An abstract adapter class for receiving option events. The methods in this class are empty. This class exists as convenience for creating listener objects. Extend this class to create a OptionEvent listener and override the methods for the events of interest. (If you implement the OptionListener interface, you have to define all of the methods in it. This abstract class defines null methods for them all, so you can only have to define methods for events you care about.) Create a listener object using your class and then register it with a component using the OptionContainer's addOptionListener ...
ExampleFileFilter: 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);
OptionListener: The listener interface for receiving option events. The class that is interested in processing an item event implements this interface. The object created with that class is then registered with a component using the component's addOptionListener method. When an option event occurs, the listener object's optionStateChanged method is invoked.
OptionEvent: A semantic event which indicates that an option's state has changed. This high-level event is generated by an OptionContainer when an option's state changes because of the user or programmatically. The event is passed to every ObjectListener object which registered to receive such events using the OptionContainer's addOptionListener method.
ImageItem: Item capable of storing information for an image including size, position and rotation. ( NOTE: this is a property archive class and methods do not affect the visual images that the items represent in anyway.)
TransformableImageItem: Item capable of storing information for an image including size, position and rotation. ( NOTE: this is a property archive class and methods do not affect the visual images that the items represent in anyway.)
ButtonBindingMap: Stores bindings between AbstractButtons in 2 or more different ButtonGroups . A bound button reacts to ActionEvents by calling setSelected on the button to which it is bound.
ItemReferrence: Allows a referrence to specific item in a JComboBox by encapsulating the containing JComboBox and item Object into a single Object .
OptionButton: Automatically (de)selects an AbstractButton based upon changes in an option using an OptionEditorStateMap to determine option and button state correlation.
OptionComponentEnabler: Automatically (de)selects an AbstractButton based upon changes in an option using an OptionEditorStateMap to determine option and button state correlation.
Libitina: An application designed for image compositing, specifically to make color previews of funeral monuments for funeral home customers prior to final sale of the monument.
JTabbedPaneFileSystemLoader: GUI constructor class for loading file systems into a JTabbedPane using JTrees to represent each first-level directory in the file system
ProxyTransferHandler: TransferHandler that always uses the non-null source and target for data transfers
ButtonItemBindingMap: Stores bindings between a AbstractButtons and an item in a JComboBox .
OptionsContainer: A Container that can manage multiple options and their associated OptionListeners
JTabbedPaneHelper: Allows selection and index retrieve in JTabbedPane s based on tab title
JTreeFileSystemLoader: GUI constructor class for loading file systems into a JTree
ItemTransferHandler: ProxyTransferHandler for transferring an Item
Layer: Constants describing default positions of Item s

Home | Contact Us | Privacy Policy | Terms of Service