Java Doc for CachedRowSetDataProvider.java in  » IDE-Netbeans » visualweb.api.designer » com » sun » data » provider » impl » Java Source Code / Java DocumentationJava Source Code and Java Documentation

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 » IDE Netbeans » visualweb.api.designer » com.sun.data.provider.impl 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.sun.data.provider.impl.AbstractDataProvider
      com.sun.data.provider.impl.AbstractTableDataProvider
         com.sun.data.provider.impl.CachedRowSetDataProvider

CachedRowSetDataProvider
public class CachedRowSetDataProvider extends AbstractTableDataProvider implements TableDataProvider,TransactionalDataProvider,RefreshableDataProvider(Code)

TableDataProvider implementation that wraps a CachedRowSet.

Note: valueChanged events will only fire for column changes made via the CachedRowSetDataProvider

Note: The lifetime of the RowKeys handed out CachedRowSetDataProvider is until the underlying CachedRowSet is closed or reexecuted.



Field Summary
protected  RowKeycursorRow
    

Constructor Summary
public  CachedRowSetDataProvider()
    
public  CachedRowSetDataProvider(CachedRowSet cachedRowSet)
    

Method Summary
public  voidaddRefreshableDataListener(RefreshableDataListener listener)
    
public  voidaddTransactionalDataListener(TransactionalDataListener listener)
    
public  RowKeyappendRow()
    
public  booleancanAppendRow()
    
public  booleancanInsertRow(RowKey beforeRow)
    
public  booleancanRemoveRow(RowKey row)
    
protected  voidcheckExecute()
    
public  voidclose()
     free resources used by this instance Close is guaranteed not to throw an exception.
public  voidcommitChanges()
    
public  booleancursorFirst()
    
public  booleancursorLast()
    
public  booleancursorNext()
    
public  booleancursorPrevious()
    
protected  voidfireChangesCommitted()
    
protected  voidfireChangesReverted()
    
public  RowKey[]getAllRows()
    
public  CachedRowSetgetCachedRowSet()
    
protected  intgetCursorIndex()
    
public  RowKeygetCursorRow()
    
public  FieldKeygetFieldKey(String fieldId)
    
public  FieldKey[]getFieldKeys()
    
public  RefreshableDataListener[]getRefreshableDataListeners()
    
public  intgetRowCount()
    
public  RowKeygetRowKey(String rowId)
    
public  RowKey[]getRowKeys(int count, RowKey afterRow)
    
public  TransactionalDataListener[]getTransactionalDataListeners()
    
public  ClassgetType(FieldKey fieldKey)
    
public  ObjectgetValue(FieldKey fieldKey, RowKey row)
    
public  RowKeyinsertRow(RowKey beforeRow)
    
public  booleanisReadOnly(FieldKey fieldKey)
    
public  booleanisRowAvailable(RowKey row)
    
public  voidrefresh()
    
public  voidremoveRefreshableDataListener(RefreshableDataListener listener)
    
public  voidremoveRow(RowKey row)
    
public  voidremoveTransactionalDataListener(TransactionalDataListener listener)
    
public  voidrevertChanges()
    
public  voidsetCachedRowSet(CachedRowSet cachedRowSet)
    

Set the CachedRowSet that we are wrapping.

protected  booleansetCursorIndex(int index)
    
public  voidsetCursorRow(RowKey row)
    
public  voidsetValue(FieldKey fieldKey, RowKey row, Object value)
    

Field Detail
cursorRow
protected RowKey cursorRow(Code)
storage for the current cursor row




Constructor Detail
CachedRowSetDataProvider
public CachedRowSetDataProvider()(Code)

Construct an unconfigured CachedRowSetDataProvider .




CachedRowSetDataProvider
public CachedRowSetDataProvider(CachedRowSet cachedRowSet)(Code)

Construct a CachedRowSetDataProvider that wraps the specified CachedRowSet.


Parameters:
  cachedRowSet - The CachedRowSet to be wrapped




Method Detail
addRefreshableDataListener
public void addRefreshableDataListener(RefreshableDataListener listener)(Code)



addTransactionalDataListener
public void addTransactionalDataListener(TransactionalDataListener listener)(Code)



appendRow
public RowKey appendRow() throws DataProviderException(Code)



canAppendRow
public boolean canAppendRow() throws DataProviderException(Code)



canInsertRow
public boolean canInsertRow(RowKey beforeRow) throws DataProviderException(Code)



canRemoveRow
public boolean canRemoveRow(RowKey row) throws DataProviderException(Code)



checkExecute
protected void checkExecute() throws SQLException(Code)

Check if rowset, if so, execute if necessary.




close
public void close()(Code)
free resources used by this instance Close is guaranteed not to throw an exception.



commitChanges
public void commitChanges() throws DataProviderException(Code)



cursorFirst
public boolean cursorFirst() throws DataProviderException(Code)



cursorLast
public boolean cursorLast() throws DataProviderException(Code)



cursorNext
public boolean cursorNext() throws DataProviderException(Code)



cursorPrevious
public boolean cursorPrevious() throws DataProviderException(Code)



fireChangesCommitted
protected void fireChangesCommitted()(Code)

Fires a changesCommtted event to each registered TransactionalDataListener .




fireChangesReverted
protected void fireChangesReverted()(Code)

Fires a changesReverted event to each registered TransactionalDataListener .




getAllRows
public RowKey[] getAllRows() throws DataProviderException(Code)



getCachedRowSet
public CachedRowSet getCachedRowSet()(Code)

Return the CachedRowSet that we are wrapping.




getCursorIndex
protected int getCursorIndex()(Code)



getCursorRow
public RowKey getCursorRow() throws DataProviderException(Code)



getFieldKey
public FieldKey getFieldKey(String fieldId) throws DataProviderException(Code)



getFieldKeys
public FieldKey[] getFieldKeys() throws DataProviderException(Code)



getRefreshableDataListeners
public RefreshableDataListener[] getRefreshableDataListeners()(Code)



getRowCount
public int getRowCount() throws DataProviderException(Code)



getRowKey
public RowKey getRowKey(String rowId) throws DataProviderException(Code)



getRowKeys
public RowKey[] getRowKeys(int count, RowKey afterRow) throws DataProviderException(Code)



getTransactionalDataListeners
public TransactionalDataListener[] getTransactionalDataListeners()(Code)



getType
public Class getType(FieldKey fieldKey) throws DataProviderException(Code)



getValue
public Object getValue(FieldKey fieldKey, RowKey row) throws DataProviderException(Code)



insertRow
public RowKey insertRow(RowKey beforeRow) throws DataProviderException(Code)



isReadOnly
public boolean isReadOnly(FieldKey fieldKey) throws DataProviderException(Code)



isRowAvailable
public boolean isRowAvailable(RowKey row) throws DataProviderException(Code)



refresh
public void refresh() throws DataProviderException(Code)



removeRefreshableDataListener
public void removeRefreshableDataListener(RefreshableDataListener listener)(Code)



removeRow
public void removeRow(RowKey row) throws DataProviderException(Code)



removeTransactionalDataListener
public void removeTransactionalDataListener(TransactionalDataListener listener)(Code)



revertChanges
public void revertChanges() throws DataProviderException(Code)



setCachedRowSet
public void setCachedRowSet(CachedRowSet cachedRowSet)(Code)

Set the CachedRowSet that we are wrapping. In addition, ensure that the CachedRowSet has been executed so that subseuqent calls accessing it will work.


Parameters:
  cachedRowSet - The new CachedRowSet



setCursorIndex
protected boolean setCursorIndex(int index)(Code)



setCursorRow
public void setCursorRow(RowKey row) throws TableCursorVetoException(Code)



setValue
public void setValue(FieldKey fieldKey, RowKey row, Object value) throws DataProviderException(Code)



Fields inherited from com.sun.data.provider.impl.AbstractTableDataProvider
protected RowKey cursorRow(Code)(Java Doc)
protected ArrayList rowKeyList(Code)(Java Doc)
protected HashMap rowKeyMap(Code)(Java Doc)
protected TableCursorListener tcListeners(Code)(Java Doc)

Methods inherited from com.sun.data.provider.impl.AbstractTableDataProvider
public void addTableCursorListener(TableCursorListener listener)(Code)(Java Doc)
public void addTableDataListener(TableDataListener l)(Code)(Java Doc)
abstract public RowKey appendRow() throws DataProviderException(Code)(Java Doc)
abstract public boolean canAppendRow() throws DataProviderException(Code)(Java Doc)
abstract public boolean canInsertRow(RowKey beforeRow) throws DataProviderException(Code)(Java Doc)
abstract public boolean canRemoveRow(RowKey row) throws DataProviderException(Code)(Java Doc)
public boolean cursorFirst() throws DataProviderException(Code)(Java Doc)
public boolean cursorLast() throws DataProviderException(Code)(Java Doc)
public boolean cursorNext() throws DataProviderException(Code)(Java Doc)
public boolean cursorPrevious() throws DataProviderException(Code)(Java Doc)
public RowKey[] findAll(String fieldId, Object value) throws DataProviderException(Code)(Java Doc)
public RowKey[] findAll(String[] fieldIds, Object[] values) throws DataProviderException(Code)(Java Doc)
public RowKey[] findAll(FieldKey fieldKey, Object value) throws DataProviderException(Code)(Java Doc)
public RowKey[] findAll(FieldKey[] fieldKeys, Object[] values) throws DataProviderException(Code)(Java Doc)
public RowKey findFirst(String fieldId, Object value) throws DataProviderException(Code)(Java Doc)
public RowKey findFirst(String[] fieldIds, Object[] values) throws DataProviderException(Code)(Java Doc)
public RowKey findFirst(FieldKey fieldKey, Object value) throws DataProviderException(Code)(Java Doc)
public RowKey findFirst(FieldKey[] fieldKeys, Object[] values) throws DataProviderException(Code)(Java Doc)
protected void fireCursorChanged(RowKey oldRow, RowKey newRow)(Code)(Java Doc)
protected void fireCursorChanging(RowKey oldRow, RowKey newRow) throws TableCursorVetoException(Code)(Java Doc)
protected void fireRowAdded(RowKey newRow)(Code)(Java Doc)
protected void fireRowRemoved(RowKey oldRow)(Code)(Java Doc)
protected void fireValueChanged(FieldKey fieldKey, RowKey row, Object oldValue, Object newValue)(Code)(Java Doc)
public RowKey[] getAllRows() throws DataProviderException(Code)(Java Doc)
protected int getCursorIndex()(Code)(Java Doc)
public RowKey getCursorRow() throws DataProviderException(Code)(Java Doc)
abstract public int getRowCount() throws DataProviderException(Code)(Java Doc)
public RowKey getRowKey(String rowId) throws DataProviderException(Code)(Java Doc)
public RowKey[] getRowKeys(int count, RowKey afterRow) throws DataProviderException(Code)(Java Doc)
public TableCursorListener[] getTableCursorListeners()(Code)(Java Doc)
public TableDataListener[] getTableDataListeners()(Code)(Java Doc)
abstract public Class getType(FieldKey fieldKey) throws DataProviderException(Code)(Java Doc)
abstract public Object getValue(FieldKey fieldKey, RowKey row) throws DataProviderException(Code)(Java Doc)
public Object getValue(String fieldId, RowKey row) throws DataProviderException(Code)(Java Doc)
public Object getValue(FieldKey fieldKey) throws DataProviderException(Code)(Java Doc)
abstract public RowKey insertRow(RowKey beforeRow) throws DataProviderException(Code)(Java Doc)
abstract public boolean isReadOnly(FieldKey fieldKey) throws DataProviderException(Code)(Java Doc)
public boolean isRowAvailable(RowKey row) throws DataProviderException(Code)(Java Doc)
abstract public void removeRow(RowKey row) throws DataProviderException(Code)(Java Doc)
public void removeTableCursorListener(TableCursorListener listener)(Code)(Java Doc)
public void removeTableDataListener(TableDataListener l)(Code)(Java Doc)
protected boolean setCursorIndex(int index)(Code)(Java Doc)
public void setCursorRow(RowKey row) throws TableCursorVetoException(Code)(Java Doc)
abstract public void setValue(FieldKey fieldKey, RowKey row, Object value) throws DataProviderException(Code)(Java Doc)
public void setValue(String fieldId, RowKey row, Object value) throws DataProviderException(Code)(Java Doc)
public void setValue(FieldKey fieldKey, Object value) throws DataProviderException(Code)(Java Doc)

Fields inherited from com.sun.data.provider.impl.AbstractDataProvider
protected DataListener dpListeners(Code)(Java Doc)
protected FieldKey[] fieldKeys(Code)(Java Doc)

Methods inherited from com.sun.data.provider.impl.AbstractDataProvider
public void addDataListener(DataListener listener)(Code)(Java Doc)
protected void addFieldKey(FieldKey fieldKey)(Code)(Java Doc)
protected void addFieldKeys(FieldKey[] fieldKeys)(Code)(Java Doc)
protected void clearFieldKeys()(Code)(Java Doc)
protected void fireProviderChanged()(Code)(Java Doc)
protected void fireValueChanged(FieldKey fieldKey, Object oldValue, Object newValue)(Code)(Java Doc)
public DataListener[] getDataListeners()(Code)(Java Doc)
public static Object getFakeData(Class dataType)(Code)(Java Doc)
public static Object getFakeData(Class dataType, Class collectionElementType)(Code)(Java Doc)
public FieldKey getFieldKey(String fieldId) throws DataProviderException(Code)(Java Doc)
public FieldKey[] getFieldKeys() throws DataProviderException(Code)(Java Doc)
abstract public Class getType(FieldKey fieldKey) throws DataProviderException(Code)(Java Doc)
public Class getType(String fieldId) throws DataProviderException(Code)(Java Doc)
abstract public Object getValue(FieldKey fieldKey) throws DataProviderException(Code)(Java Doc)
public Object getValue(String fieldId) throws DataProviderException(Code)(Java Doc)
abstract public boolean isReadOnly(FieldKey fieldKey) throws DataProviderException(Code)(Java Doc)
public boolean isReadOnly(String fieldId) throws DataProviderException(Code)(Java Doc)
public void removeDataListener(DataListener listener)(Code)(Java Doc)
protected void removeFieldKey(FieldKey fieldKey)(Code)(Java Doc)
protected void removeFieldKeys(FieldKey[] fieldKeys)(Code)(Java Doc)
abstract public void setValue(FieldKey fieldKey, Object value) throws DataProviderException(Code)(Java Doc)
public void setValue(String fieldId, Object value) throws DataProviderException(Code)(Java Doc)
protected void sortFieldKeys()(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.