Uses of Interface
dsto.dfc.util.PropertyEventSource

Packages that use PropertyEventSource
dsto.dfc.swing.commands Framework for defining and presenting user commands in a UI. 
dsto.dfc.swing.controls Miscellaneous UI components and support classes. 
dsto.dfc.swing.dnd Extensions to the AWT Drag and Drop/Copy and Paste packages. 
dsto.dfc.swing.forms A high-level framework supporting the assembly of UI editor components into forms. 
dsto.dfc.swing.list Extended support for the Swing JList and ListModel classes. 
dsto.dfc.swing.logging Components for displaying log messages. 
dsto.dfc.swing.panels Provides MDI-style window management support for managing a set of components. 
dsto.dfc.swing.persistence Support for managing persistent objects. 
dsto.dfc.swing.status A status bar control. 
dsto.dfc.swing.styles   
dsto.dfc.swing.table Extension of the Swing table framework to support advanced (add, remove, copy, paste etc) table models and provide several extensions to the JTable component. 
dsto.dfc.swing.tree Extends the Swing tree package to add support for advanced tree models (supporting add, remove, copy, paste etc) and provide several extensions to the JTree component. 
dsto.dfc.swing.undo Extends Swing undo/redo framework to add generalized support for monitoring user edits and displaying them in a UI. 
dsto.dfc.swt.commands Framework for defining and presenting user commands in a UI. 
dsto.dfc.swt.dnd   
dsto.dfc.swt.util   
dsto.dfc.swt.viewers   
dsto.dfc.util Miscellaneous utility classes. 
livespace.ui.dashboard   
 

Uses of PropertyEventSource in dsto.dfc.swing.commands
 

Subinterfaces of PropertyEventSource in dsto.dfc.swing.commands
 interface CompositeCommand
          Use when you want a command that 'selects' from a defined set of commands.
 interface EnumeratedCommand
          Defines a command whose behaviour 'selects' from a defined set of enumerated values.
 

Classes in dsto.dfc.swing.commands that implement PropertyEventSource
 class AbstractBooleanCommand
          Base class for commands that can be 'on' or 'off'.
 class AbstractCompositeCommand
          The AbstractCompositeCommand should be used when you want to have a list of commands that are in some way linked together.
 class AbstractEnumeratedCommand
          Abstract base class for commands that act to select one or more values from an enumerated set (eg zoom levels, open windows, etc).
 class AbstractMoveCommand
          Base class for commands that move items up/down within their host.
 class AbstractMutableCommand
          Base class for commands that have changeable properties.
 class AbstractSelectionBasedCommand
          Base class for commands that are affected by changes in a SelectionEventSource (eg become disabled when nothing is selected).
 class BasicDeleteCommand
          Basic delete command.
 class BasicFileSaveAsCommand
          Base class for File "Save As..." commands.
 class BasicFileSaveCommand
          Base class for File Save commands.
 class BasicPropertiesCommand
          Base class for Properties type commands.
 class CommandActionAdapter
          Adapts a Command instance to look like a JFC Action instance.
 class CommandView
          A list of Command's and sub-CommandView's intended to define the commands presented in a given UI context, such as a main menu or a toolbar.
 

Uses of PropertyEventSource in dsto.dfc.swing.controls
 

Classes in dsto.dfc.swing.controls that implement PropertyEventSource
 class Gradient
          This class is used to represent a colour gradient.
 

Uses of PropertyEventSource in dsto.dfc.swing.dnd
 

Classes in dsto.dfc.swing.dnd that implement PropertyEventSource
 class AbstractCnpCommand
          Abstract base class for clipboard based commands operating on a CnpProvider.
 class CmdCopy
          Copy from a CnpProvider to the system clipboard.
 class CmdCut
          Cut from a CnpProvider to the system clipboard.
 class CmdPaste
          Paste from the system clipboard to a CnpProvider.
 

Uses of PropertyEventSource in dsto.dfc.swing.forms
 

Classes in dsto.dfc.swing.forms that implement PropertyEventSource
 class AbstractShowCustomizerCommand
          Base implementation of the properties command that attempts to show a JavaBean's FormEditor-compliant customizer.
static class CustomizersTreeModel.Entry
          An entry in the tree model.
 

Uses of PropertyEventSource in dsto.dfc.swing.list
 

Classes in dsto.dfc.swing.list that implement PropertyEventSource
 class CmdCustomize
          Base implementation of the properties command that attempts to show the selected list entry's FormEditor-compliant customizer.
 class CmdDeleteRow
          Deletes the currently selected row of a list using that is displaying a DfcListModel.
 

Uses of PropertyEventSource in dsto.dfc.swing.logging
 

Classes in dsto.dfc.swing.logging that implement PropertyEventSource
 class LogMessageTable
          Display a LogMessageBuffer in a table view.
 class LogWindowPopper
          Manages auto popup of the log window when selected types of log events occur.
 

Uses of PropertyEventSource in dsto.dfc.swing.panels
 

Classes in dsto.dfc.swing.panels that implement PropertyEventSource
 class CmdClosePanel
          A Command that removes the currently active panel from the panel manager.
 class CmdFloatPanel
          A Command that sets the floating state of the currently active PanelManager.Panel to floatStatus.
 class CmdPageLayoutPanel
          A Command that opens up a page layout dialog.
 class CmdPrintPanel
          A Command that opens up a print dialog.
 class CmdPrintPreviewPanel
          A Command that opens up a print preview dialog.
 class ToolView
          A floating tool view of a PanelManager.Panel.
 

Uses of PropertyEventSource in dsto.dfc.swing.persistence
 

Subinterfaces of PropertyEventSource in dsto.dfc.swing.persistence
 interface Document
          A document is used as a wrapper around a model to provide the typical Save / Save As / Open / New / Save Changes? behaviour that a user usually expects to see with persistent documents.
 

Classes in dsto.dfc.swing.persistence that implement PropertyEventSource
 class AbstractDocument
          A base implementation of Document which implements the high-level bahaviour of a document without being specific to a particular persistent storage mechanism.
 class BasicDocumentSaveAsCommand
          Basic command to execute the saveAs() method on a Document.
 class BasicDocumentSaveCommand
          Command to invoke the save () method on a Document.
 class BasicSerializeCommand
          Base implementation for commands that save objects using Serializer.
 class FileDocument
          A base class for documents that are file-based.
 

Uses of PropertyEventSource in dsto.dfc.swing.status
 

Classes in dsto.dfc.swing.status that implement PropertyEventSource
 class StatusManager
          Manages a stack of status messages.
 

Uses of PropertyEventSource in dsto.dfc.swing.styles
 

Classes in dsto.dfc.swing.styles that implement PropertyEventSource
 class StyleSheetTableView
          Views/edits a StyleSheet in a table view.
static class StyleSheetTableView.CmdClearValue
          The "Clear Value" command.
 

Uses of PropertyEventSource in dsto.dfc.swing.table
 

Classes in dsto.dfc.swing.table that implement PropertyEventSource
 class AbstractCustomizeRowCommand
          Abstract base class for commands that customize the selected row of a table.
 class CmdDeleteRows
          Delete selected rows.
 class CmdMoveRow
          Moves rows up/down the table.
 class DfcTable
          DFC extended table component.
 class MapTableView
          Edits a java.util.Map in a table view.
protected  class MapTableView.CmdDeleteProperty
          The "Delete Property" command.
 

Uses of PropertyEventSource in dsto.dfc.swing.tree
 

Classes in dsto.dfc.swing.tree that implement PropertyEventSource
 class CmdAddEntry
          Add a new entry as a child of the currently selected entry.
 class CmdDelete
          Delete currently selected node and all children.
 class CmdMoveEntry
          A command that moves tree entries up/down within their parent.
 class CmdRename
          Rename the selected node.
 class DfcTree
          DFC'ified JTree, adding support for operations based on the extended DfcTreeModel.
 

Uses of PropertyEventSource in dsto.dfc.swing.undo
 

Classes in dsto.dfc.swing.undo that implement PropertyEventSource
 class AbstractUndoableCommand
          Abstract super class for undo and redo commands.
 class CmdRedo
          Command to invoke a single redo () on the MonitoredUndoManager.
 class CmdRedoTo
          Command class to invoke redoTo () on a MonitoredUndoManager.
 class CmdUndo
          Command to invoke a single undo () on the MonitoredUndoManager.
 class CmdUndoTo
          Command to invoke undoTo () on a MonitoredUndoManager.
 class MonitoredUndoManager
          Provides the same functions as the Swing UndoManager, plus provides functionality to skip non-undoable edits in the middle of the history list.
 

Uses of PropertyEventSource in dsto.dfc.swt.commands
 

Subinterfaces of PropertyEventSource in dsto.dfc.swt.commands
 interface Command
          Defines a command that may presented in a UI.
 interface CustomMenuCommand
          Interface for commands that wish to provide a custom menu UI.
 

Classes in dsto.dfc.swt.commands that implement PropertyEventSource
 class AbstractAboutCommand
          Base for commands that show an "about box.
 class AbstractAddEntryCommand
          Base class for commands that add a new entry to a control.
 class AbstractCommand
          Base class for most commands.
 class AbstractCopyCommand
           
 class AbstractCutCommand
           
 class AbstractDeleteCommand
          Basic delete command.
 class AbstractPasteCommand
           
 class AbstractPropertiesCommand
          Base class for Properties type commands.
 class BasicExitCommand
          Base class for Exit commands.
 class BasicToggleCommand
          Base class for commands that can be "on" or "off".
 class CmdChangeDataObjectProperty
          Command to change a property of one or more target data objects.
 class CmdSetBeanProperty
          Command that sets the value of a Bean property (ie via a setX () method).
 class CmdToggleWindowStyle
          Command to toggle a style setting on a JFace window.
 

Uses of PropertyEventSource in dsto.dfc.swt.dnd
 

Classes in dsto.dfc.swt.dnd that implement PropertyEventSource
 class CmdCopyDataObjectProperties
          Command that copies selected properties of an IDataObject to the clipboard as text.
 class CmdCopyObject
          Command to copy an object to the clipboard.
 class CmdPasteObject
          Command to paste an object from the clipboard.
 

Uses of PropertyEventSource in dsto.dfc.swt.util
 

Classes in dsto.dfc.swt.util that implement PropertyEventSource
 class CmdToggleDataBeanProperty
          Command that toggles a boolean property of an IDataBean.
 

Uses of PropertyEventSource in dsto.dfc.swt.viewers
 

Classes in dsto.dfc.swt.viewers that implement PropertyEventSource
 class AbstractCreateItemCommand
          Abstract base class for commands that create new items in a collection being viewed by a JFace StructuredViewer.
 class CmdDeleteItem
          Generic "Delete Items" command for JFace Viewer's showing a Collection (although could be subclassed for non Collection's).
 class CmdMoveItem
          Generic command to move items up/down in a viewer that is displaying a java.util.List.
 

Uses of PropertyEventSource in dsto.dfc.util
 

Classes in dsto.dfc.util that implement PropertyEventSource
 class BasicPropertyEventSource
          Base implementation of PropertyEventSource.
 

Uses of PropertyEventSource in livespace.ui.dashboard
 

Classes in livespace.ui.dashboard that implement PropertyEventSource
 class CmdAboutBox
           
 class CmdRestartOsgi
          Triggers an OSGi system restart.
 class CmdShowPanel
           
 class CmdShutdownOsgi
          Triggers a clean OSGi system shutdown.
 



Copyright © 2008 Commonwealth of Australia