Uses of Interface
dsto.dfc.swing.icons.Iconic

Packages that use Iconic
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.icons   
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.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. 
 

Uses of Iconic in dsto.dfc.swing.commands
 

Subinterfaces of Iconic in dsto.dfc.swing.commands
 interface Command
          Defines a command that may be executed by the user.
 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 Iconic
 class AbstractBooleanCommand
          Base class for commands that can be 'on' or 'off'.
 class AbstractCommand
          Base class for commands.
 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 BasicAboutCommand
          Show an about box.
 class BasicAddEntryCommand
          Base class for commands that add a new entry to a control.
 class BasicCopyCommand
           
 class BasicCutCommand
           
 class BasicDeleteCommand
          Basic delete command.
 class BasicExitCommand
          Base class for Exit commands.
 class BasicFileOpenCommand
          Base class for File Open commands.
 class BasicFileSaveAsCommand
          Base class for File "Save As..." commands.
 class BasicFileSaveCommand
          Base class for File Save commands.
 class BasicPasteCommand
           
 class BasicPropertiesCommand
          Base class for Properties type commands.
 

Uses of Iconic in dsto.dfc.swing.controls
 

Classes in dsto.dfc.swing.controls that implement Iconic
 class AbstractIconicFolder
          Utility base class for IconicFolder's.
static class BillBoard.LayoutEnum
          This is used to store the layout and the alignment in
protected  class DfcDialog.CmdCancel
           
 

Uses of Iconic in dsto.dfc.swing.dnd
 

Classes in dsto.dfc.swing.dnd that implement Iconic
 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 Iconic in dsto.dfc.swing.forms
 

Classes in dsto.dfc.swing.forms that implement Iconic
 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 Iconic in dsto.dfc.swing.icons
 

Subinterfaces of Iconic in dsto.dfc.swing.icons
 interface IconicFolder
          An iconic object that is also a container of some sort (such as a folder or group) that supports different icons depending on whether it is logically 'open' or 'closed'.
 

Classes in dsto.dfc.swing.icons that implement Iconic
 class IconicEnumerationValue
          Base class for enumerated types that have an iconic representation.
 class SimpleIconic
          Simple Iconic data class.
 

Methods in dsto.dfc.swing.icons that return Iconic
 Iconic IconicRegistry.getIconicValue(Object value)
          Get an Iconic value.
 Iconic IconicFactory.getIconicValue(Object value)
          Get the equivalent Iconic value for a given value.
 

Methods in dsto.dfc.swing.icons with parameters of type Iconic
 void IconicRegistry.register(Class type, Iconic iconic)
          Register an iconic value that applies to all instances of a given type.
 

Uses of Iconic in dsto.dfc.swing.list
 

Classes in dsto.dfc.swing.list that implement Iconic
 class AbstractAddRowCommand
          Base class for "Add New Row"-type commands.
 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 Iconic in dsto.dfc.swing.logging
 

Classes in dsto.dfc.swing.logging that implement Iconic
 class CmdShowLogWindow
          Shows the log window managed by a LogWindowPopper instance.
 

Uses of Iconic in dsto.dfc.swing.panels
 

Classes in dsto.dfc.swing.panels that implement Iconic
 class ActivePanelEdit
          Edit for changing the active panel of the PanelManager.
 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 FloatStateEdit
          Edit to represent a change in floating status, customised from the PropertyEdit for its display name.
 class PanelManager.Panel
          A panel managed by the panel manager.
 

Uses of Iconic in dsto.dfc.swing.persistence
 

Classes in dsto.dfc.swing.persistence that implement Iconic
 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.
 

Uses of Iconic in dsto.dfc.swing.styles
 

Subinterfaces of Iconic in dsto.dfc.swing.styles
 interface Style
          A logical display style.
 

Classes in dsto.dfc.swing.styles that implement Iconic
 class AbstractStyle
          Base implementation of the Style interface.
static class StyleSheetTableView.CmdClearValue
          The "Clear Value" command.
 

Uses of Iconic in dsto.dfc.swing.table
 

Classes in dsto.dfc.swing.table that implement Iconic
 class AbstractCustomizeRowCommand
          Abstract base class for commands that customize the selected row of a table.
 class CmdAddRow
          Add a new row to the end of the table.
 class CmdDeleteRows
          Delete selected rows.
 class CmdInsertRow
          Insert a new row into the table.
 class CmdMoveRow
          Moves rows up/down the table.
 class CmdSelectAll
          The "Select All" command.
protected  class MapTableView.CmdAddProperty
          The "Add Property" command.
protected  class MapTableView.CmdDeleteProperty
          The "Delete Property" command.
 

Uses of Iconic in dsto.dfc.swing.tree
 

Classes in dsto.dfc.swing.tree that implement Iconic
 class CmdAddEntry
          Add a new entry as a child of the currently selected entry.
 class CmdCollapse
          Collapse currently selected node.
 class CmdDelete
          Delete currently selected node and all children.
 class CmdExpandAll
          Expand 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.
 

Uses of Iconic in dsto.dfc.swing.undo
 

Subinterfaces of Iconic in dsto.dfc.swing.undo
 interface MonitoredEdit
          An extended undoable edit.
 

Classes in dsto.dfc.swing.undo that implement Iconic
 class AbstractMonitoredEdit
          Abstract implementation of the MonitoredEdit interface.
 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 PropertyEdit
          Used to undo property changes.
 class PropertyEditBean
          Bean PropertyEdit class for Bean serialisation support.
 



Copyright © 2008 Commonwealth of Australia