Uses of Interface
jimm.datavision.Nameable

Packages that use Nameable
jimm.datavision Provides the classes and interfaces that make up a DataVision report. 
jimm.datavision.gui Provides the classes and interfaces that make up the graphical user interface used to build and run DataVision reports. 
jimm.datavision.gui.cmd Provides the classes and interfaces that make up the undo/redo command structure. 
jimm.datavision.source The abstract classes and interfaces that define a data source. 
jimm.datavision.source.ncsql A data source that acts like a database data source but can't run reports and gets its column descriptions from metadata described in the report XML file. 
jimm.datavision.source.sql Provides the classes and interfaces that make up the database data source. 
jimm.datavision.test Provides the JUnit test classes used during DataVision development. 
 

Uses of Nameable in jimm.datavision
 

Classes in jimm.datavision that implement Nameable
 class Expression
          The abstract superclass of objects that are evaluated, such as formulas and user columns.
 class Formula
          A formula is a Bean Scripting Framework (BSF) script evaluated at runtime.
 class PaperFormat
          The class manages lists of paper sizes and instances represents specific paper sizes and orientations.
 class Parameter
          A parameter is a piece of data the value of which is determined by asking the user each time a report runs.
 class Report
          A report holds data source information, accepts parameters from the user, runs a query, and uses a layout engine to format the output.
 class Subreport
          A subreport is a report whose query is run every time the field containing it is output.
 class UserColumn
          A user column is an arbitrary expression inserted into the SQL query and retrieved as a column value.
 

Uses of Nameable in jimm.datavision.gui
 

Methods in jimm.datavision.gui with parameters of type Nameable
protected  boolean FieldPickerWin.rename(Nameable nameable, java.lang.String newTitleKey, java.lang.String editTitleKey, java.lang.String promptKey, java.lang.String unnamedKey)
          Opens a name editor to (re)name a nameable object.
 

Uses of Nameable in jimm.datavision.gui.cmd
 

Subinterfaces of Nameable in jimm.datavision.gui.cmd
 interface Command
          A Command knows how to perform an action, undo it, and redo it.
 

Classes in jimm.datavision.gui.cmd that implement Nameable
 class AbstractAggregateCommand
          A command for adding a aggregate to a field for a particular section.
 class BoundsCommand
          A command for changing a field's bounds.
 class CommandAdapter
          An abstract adapter class for performing a command.
 class CompoundCommand
          A compound command holds a list of commands and allows their use as one single command.
 class CutCommand
          Cuts (copies to the clipboard then deletes) a list of field widgets.
 class DbConnCommand
          A command for changing a database's connection information.
 class DeleteAggregateCommand
          A command for deleting a aggregate to a field from a particular section.
 class DeleteCommand
          Deletes a list of field widgets.
 class DeleteGroupCommand
           
 class DeleteSectionCommand
           
 class EditAggregateFuncCommand
          A command for changing an aggregate field's function.
 class FieldAlignCommand
          Aligns a single field with another.
 class FieldMoveCommand
          Moves a single field.
 class FieldResizeCommand
          Resizes a single field by comparing it with another field and copying one of its dimensions.
 class FieldShowHideCommand
          Shows or hides a field.
 class FieldStretchCommand
          After stretching a field using the mouse, this command lets us undo and redo the size change.
 class FormatCommand
          A command for changing a field's format and border.
 class FormulaEditCommand
          A command for changing a Formula's code text.
 class FPCutCommand
          Cuts (copies to the clipboard then deletes) something from a field picker tree.
 class FPDeleteCommand
          Deletes something from the field picker tree.
 class GroupEditCommand
          A command for changing a report's Groups.
 class InsertFieldCommand
          Abstract superclass for inserting new fields.
 class NameableRenameCommand
          A command for changing a Nameable object's name.
 class NewAggregateCommand
          A command for adding a aggregate to a field for a particular section.
 class NewDraggedFieldCommand
          Inserts a new text field.
 class NewGroupCommand
           
 class NewImageFieldCommand
          Inserts a new image field.
 class NewSectionCommand
           
 class NewSubreportCommand
           
 class NewTextFieldCommand
          Inserts a new text field.
 class PaperSizeCommand
          Change a report's paper size.
 class ParamEditCommand
          A command for changing a Parameter's values---not the runtime values, but the default values presented to the user as initial choices.
 class PasteCommand
           
 class ReportStartupScriptEditCommand
          A command for changing the Report's startup Formula's code text.
 class ScriptingCommand
          Performs changes to a report's scripting language information.
 class SectionPageBreakCommand
          Toggles the state of a section's page break flag.
 class SectionResizeCommand
          Mainly used by other commands to remember a section's old size and restore it on an undo.
 class SortEditCommand
          A command for changing the sort orders in a Query.
 class SummaryCommand
          A command for changing a field's summary.
 class SuppressionProcEditCommand
          Handles suppression proc edits.
 class TableJoinCommand
          A command for changing a field's table join.
 class TypingCommand
          Moves a single field.
 class UserColumnEditCommand
          A command for changing a UserColumn's code text.
 class WhereClauseEditCommand
          A command for changing a Query's where clause text.
 class WidgetRenameCommand
          A command for changing a field widget's field's name.
 

Fields in jimm.datavision.gui.cmd declared as Nameable
protected  Nameable NameableRenameCommand.nameable
           
 

Constructors in jimm.datavision.gui.cmd with parameters of type Nameable
NameableRenameCommand(Nameable nameable, java.lang.String oldName, java.lang.String newName)
           
 

Uses of Nameable in jimm.datavision.source
 

Classes in jimm.datavision.source that implement Nameable
 class Column
          Represents a data column.
 class Table
          Represents a table that contains columns.
 

Uses of Nameable in jimm.datavision.source.ncsql
 

Classes in jimm.datavision.source.ncsql that implement Nameable
 class NCColumn
          A database column.
 class NCTable
          A table for no-connection database sources.
 

Uses of Nameable in jimm.datavision.source.sql
 

Classes in jimm.datavision.source.sql that implement Nameable
 class SQLColumn
          A database column.
 class SQLTable
          Represents a database table.
 

Uses of Nameable in jimm.datavision.test
 

Classes in jimm.datavision.test that implement Nameable
(package private)  class TestColumn
           
(package private)  class TestTable