org.isqlviewer.model |
Data models used to to drive the respective swing components.
|
Java Source File Name | Type | Comment |
BookmarkTreeModel.java | Class | Datamodel for managing Bookmark objects similar to a local-filesystem.
This model mimics a file-system such that there are folders and bookmarks. |
HistoryTreeModel.java | Class | Model for displaying the historical events in a tree fashion.
This model is a two tier tree such that there are date nodes refere to an internal collection historical reference
nodes.
author: Mark A. |
JdbcSchemaTreeModel.java | Class | JDBC Schema Model that represents a Swing JTree compatible representation of JDBC structures.
author: Mark A. |
SchemaNode.java | Class | TreeNode class for distinguinshing different nodes by a given type within a tree.
This node class should alleviate and provide more flexiblility to the structure of the JdbcSchema tree so that nodes
can be indentified by an enumerated type instead of making a guess by the name of the node itself as to what data it
actually represents in the JDBC Schema.
author: Mark A. |
SchemaNodeType.java | enum | Types of nodes that can be found within the JDBC Schema Tree.
Actually expirementing a new code style/pattern with enumerations where the type of node can actually define a
'preferredIcon' so that the renderer is not required to be coded with icon information for rendering each node.
author: Mark A. |
ThrowableOutlineModel.java | Class | Outline model for showing exceptions in a tree-table fashion.
author: Mark A. |