net.sourceforge.squirrel_sql.fw.datasetviewer.cellcomponent

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Database Client » squirrel sql 2.6.5a » net.sourceforge.squirrel_sql.fw.datasetviewer.cellcomponent 
net.sourceforge.squirrel_sql.fw.datasetviewer.cellcomponent
Java Source File NameTypeComment
AbstractDataType.javaClass Base class for various data type class JUnit tests.
AllTests.javaClass
BaseDataTypeComponent.javaClass A base class for DataTypeComponents with common behavior.
BaseKeyTextHandler.javaClass
BinaryDisplayConverter.javaClass
BlobDescriptor.javaClass
author:
   gwg
author:
   This is the object that is actually stored in the ContentsTab table
author:
   for a BLOB field.
author:
   The data in a BLOB is handled differently than other data types.
author:
   When the row in the DB is read, what is returned is actually a
author:
   java.sql.Blob object that points to the data rather than the data itself.
author:
   Since BLOBs can be very large (and thus take a long time to read), we
author:
   provide the user the flexibility to read only part of the BLOB data, or
author:
   to not read any of it.
CellComponentFactory.javaClass
author:
   gwg
author:
   This class is used by other parts of SQuirreL to handle all
author:
   DataType-specific behavior for the ContentsTab.
author:
   This includes reading/updating the DB, formatting data for display,
author:
   validating user input, converting user input into an internal object
author:
   of the appropriate type, and saving the data to or reading from a file.
author:
   The actual work is handled by separate DataType-specific classes,
author:
   so this class is a facade that selects the class to use and calls
author:
   the desired method on that class.
CellEditorUsingRenderer.javaClass
ClobDescriptor.javaClass
author:
   gwg
author:
   This is the object that is actually stored in the ContentsTab table
author:
   for a CLOB field.
author:
   The data in a CLOB is handled differently than other data types.
author:
   When the row in the DB is read, what is returned is actually a
author:
   java.sql.Clob object that points to the data rather than the data itself.
author:
   Since CLOBs can be very large (and thus take a long time to read), we
author:
   provide the user the flexibility to read only part of the CLOB data, or
author:
   to not read any of it.
DatabaseSpecificBooleanValue.javaClass
DatabaseSpecificEscape.javaClass
DataTypeBigDecimal.javaClass
author:
   gwg
author:
   This class provides the display components for handling BigDecimal data types,
author:
   specifically SQL types DECIMAL and NUMERIC.
author:
   The display components are for:
author:
  

    author:
      
  • read-only display within a table cell
    author:
      
  • editing within a table cell
    author:
      
  • read-only or editing display within a separate window
    author:
      

author:
   The class also contains
author:
  

    author:
      
  • a function to compare two display values
    author:
       to see if they are equal.
DataTypeBigDecimalTest.javaClass JUnit test for DataTypeBigDecimal class.
DataTypeBinary.javaClass
author:
   gwg
author:
   This class provides the display components for handling Binary data types,
author:
   specifically SQL types BINARY, VARBINARY, and LONGVARBINARY.
author:
   The display components are for:
author:
  

    author:
      
  • read-only display within a table cell
    author:
      
  • editing within a table cell
    author:
      
  • read-only or editing display within a separate window
    author:
      

author:
   The class also contains
author:
  

    author:
      
  • a function to compare two display values
    author:
       to see if they are equal.
DataTypeBinaryTest.javaClass JUnit test for DataTypeBinary class.
DataTypeBlob.javaClass
author:
   gwg
author:
   This class provides the display components for handling Blob data types,
author:
   specifically SQL type BLOB.
author:
   The display components are for:
author:
  

    author:
      
  • read-only display within a table cell
    author:
      
  • editing within a table cell
    author:
      
  • read-only or editing display within a separate window
    author:
      

author:
   The class also contains
author:
  

    author:
      
  • a function to compare two display values
    author:
       to see if they are equal.
DataTypeBoolean.javaClass
author:
   gwg
author:
   This class provides the display components for handling Boolean data types,
author:
   specifically SQL type BIT.
author:
   The display components are for:
author:
  

    author:
      
  • read-only display within a table cell
    author:
      
  • editing within a table cell
    author:
      
  • read-only or editing display within a separate window
    author:
      

author:
   The class also contains
author:
  

    author:
      
  • a function to compare two display values
    author:
       to see if they are equal.
DataTypeBooleanTest.javaClass JUnit test for DataTypeBoolean class.
DataTypeByte.javaClass
author:
   gwg
author:
   This class provides the display components for handling Byte data types,
author:
   specifically SQL type TINYINT.
author:
   The display components are for:
author:
  

    author:
      
  • read-only display within a table cell
    author:
      
  • editing within a table cell
    author:
      
  • read-only or editing display within a separate window
    author:
      

author:
   The class also contains
author:
  

    author:
      
  • a function to compare two display values
    author:
       to see if they are equal.
DataTypeByteTest.javaClass JUnit test for DataTypeByte class.
DataTypeClob.javaClass
author:
   gwg
author:
   This class provides the display components for handling Clob data types,
author:
   specifically SQL type CLOB.
author:
   The display components are for:
author:
  

    author:
      
  • read-only display within a table cell
    author:
      
  • editing within a table cell
    author:
      
  • read-only or editing display within a separate window
    author:
      

author:
   The class also contains
author:
  

    author:
      
  • a function to compare two display values
    author:
       to see if they are equal.
DataTypeClobTest.javaClass JUnit test for DataTypeClob class.
DataTypeDate.javaClass
author:
   gwg
author:
   This class provides the display components for handling Date data types,
author:
   specifically SQL type DATE.
author:
   The display components are for:
author:
  

    author:
      
  • read-only display within a table cell
    author:
      
  • editing within a table cell
    author:
      
  • read-only or editing display within a separate window
    author:
      

author:
   The class also contains
author:
  

    author:
      
  • a function to compare two display values
    author:
       to see if they are equal.
DataTypeDateTest.javaClass JUnit test for DataTypeDate class.
DataTypeDouble.javaClass
author:
   gwg
author:
   This class provides the display components for handling Double data types,
author:
   specifically SQL types REAL.
author:
   Note: The java.sun.com site recommends using float for SQL type REAL
author:
   and data type double for SQL type FLOAT.
author:
   The display components are for:
author:
  

    author:
      
  • read-only display within a table cell
    author:
      
  • editing within a table cell
    author:
      
  • read-only or editing display within a separate window
    author:
      

author:
   The class also contains
author:
  

    author:
      
  • a function to compare two display values
    author:
       to see if they are equal.
DataTypeDoubleTest.javaClass JUnit test for DataTypeDouble class.
DataTypeFloat.javaClass
author:
   gwg
author:
   This class provides the display components for handling Float data types,
author:
   specifically SQL types REAL.
author:
   Note: The java.sun.com site recommends using float for SQL type REAL
author:
   and data type double for SQL type FLOAT.
author:
   The display components are for:
author:
  

    author:
      
  • read-only display within a table cell
    author:
      
  • editing within a table cell
    author:
      
  • read-only or editing display within a separate window
    author:
      

author:
   The class also contains
author:
  

    author:
      
  • a function to compare two display values
    author:
       to see if they are equal.
DataTypeFloatTest.javaClass JUnit test for DataTypeFloat class.
DataTypeInteger.javaClass
author:
   gwg
author:
   This class provides the display components for handling Integer data types,
author:
   specifically SQL types INTEGER, SMALLINT, and TINYINT.
author:
   The display components are for:
author:
  

    author:
      
  • read-only display within a table cell
    author:
      
  • editing within a table cell
    author:
      
  • read-only or editing display within a separate window
    author:
      

author:
   The class also contains
author:
  

    author:
      
  • a function to compare two display values
    author:
       to see if they are equal.
DataTypeIntegerTest.javaClass JUnit test for DataTypeInteger class.
DataTypeJavaObject.javaClass
DataTypeLong.javaClass
author:
   gwg
author:
   This class provides the display components for handling Long data types,
author:
   specifically SQL type BIGINT.
author:
   The display components are for:
author:
  

    author:
      
  • read-only display within a table cell
    author:
      
  • editing within a table cell
    author:
      
  • read-only or editing display within a separate window
    author:
      

author:
   The class also contains
author:
  

    author:
      
  • a function to compare two display values
    author:
       to see if they are equal.
DataTypeLongTest.javaClass JUnit test for DataTypeLong class.
DataTypeOther.javaClass
DataTypeOtherTest.javaClass JUnit test for DataTypeOther class.
DataTypeShort.javaClass
author:
   gwg
author:
   This class provides the display components for handling Short data types,
author:
   specifically SQL type, SMALLINT.
author:
   The display components are for:
author:
  

    author:
      
  • read-only display within a table cell
    author:
      
  • editing within a table cell
    author:
      
  • read-only or editing display within a separate window
    author:
      

author:
   The class also contains
author:
  

    author:
      
  • a function to compare two display values
    author:
       to see if they are equal.
DataTypeShortTest.javaClass JUnit test for DataTypeShort class.
DataTypeString.javaClass
author:
   gwg
author:
   This class provides the display components for handling String data types,
author:
   specifically SQL types CHAR, VARCHAR, and LONGVARCHAR.
author:
   The display components are for:
author:
  

    author:
      
  • read-only display within a table cell
    author:
      
  • editing within a table cell
    author:
      
  • read-only or editing display within a separate window
    author:
      

author:
   The class also contains
author:
  

    author:
      
  • a function to compare two display values
    author:
       to see if they are equal.
DataTypeStringTest.javaClass JUnit test for DataTypeString class.
DataTypeTime.javaClass
author:
   gwg
author:
   This class provides the display components for handling Time data types,
author:
   specifically SQL type TIME.
author:
   The display components are for:
author:
  

    author:
      
  • read-only display within a table cell
    author:
      
  • editing within a table cell
    author:
      
  • read-only or editing display within a separate window
    author:
      

author:
   The class also contains
author:
  

    author:
      
  • a function to compare two display values
    author:
       to see if they are equal.
DataTypeTimestamp.javaClass
author:
   gwg
author:
   This class provides the display components for handling Timestamp data types,
author:
   specifically SQL type TIMESTAMP.
author:
   The display components are for:
author:
  

    author:
      
  • read-only display within a table cell
    author:
      
  • editing within a table cell
    author:
      
  • read-only or editing display within a separate window
    author:
      

author:
   The class also contains
author:
  

    author:
      
  • a function to compare two display values
    author:
       to see if they are equal.
DataTypeTimestampTest.javaClass JUnit test for DataTypeTimestamp class.
DataTypeUnknown.javaClass
DataTypeUnknownTest.javaClass JUnit test for DataTypeUnknown class.
DefaultColumnRenderer.javaClass Default renderer.
DTProperties.javaClass
FloatingPointBase.javaClass
IDataTypeComponent.javaInterface
IDataTypeComponentFactory.javaInterface Interface that describes a class that creates instances of a particular IDataTypeComponent.
IRestorableTextComponent.javaInterface
author:
   gwg
author:
   This interface allows sections of the DataType objects to operate on
author:
   both RestorableJTextField and RestorableJTextArea components.
author:
   In those components,the original contents of the cell is saved whenever
author:
   the setText() method is called.
RestorableJTextArea.javaClass
author:
   gwg
author:
   JTextField that saves and restores the original value.
author:
   The original value is saved when the table does a setText()
author:
   at the start of editing.
RestorableJTextField.javaClass
author:
   gwg
author:
   JTextField that saves and restores the original value.
author:
   The original value is saved when the table does a setText()
author:
   at the start of editing.
SquirrelTableCellRenderer.javaInterface
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.