Java Doc for AbstractTableDataProvider.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

All known Subclasses:   com.sun.data.provider.impl.ObjectArrayDataProvider,  com.sun.data.provider.impl.ListDataProvider,  com.sun.data.provider.impl.ObjectListDataProvider,  com.sun.data.provider.impl.CachedRowSetDataProvider,  com.sun.data.provider.impl.FilteredTableDataProvider,  com.sun.data.provider.impl.BasicTransactionalTableDataProvider,
AbstractTableDataProvider
abstract public class AbstractTableDataProvider extends AbstractDataProvider implements TableDataProvider(Code)
Abstract base implementation of TableDataProvider . This class is a convenient base class to use when creating a new TableDataProvider implementation.
author:
   Joe Nuxoll
author:
   Winston Prakash (Buf Fixes and clean up)


Field Summary
protected  RowKeycursorRow
    
protected  ArrayListrowKeyList
    
protected  HashMaprowKeyMap
    
protected  TableCursorListenertcListeners
    


Method Summary
public  voidaddTableCursorListener(TableCursorListener listener)
    
public  voidaddTableDataListener(TableDataListener l)
    
abstract public  RowKeyappendRow()
    
abstract public  booleancanAppendRow()
    
abstract public  booleancanInsertRow(RowKey beforeRow)
    
abstract public  booleancanRemoveRow(RowKey row)
    
public  booleancursorFirst()
    
public  booleancursorLast()
    
public  booleancursorNext()
    
public  booleancursorPrevious()
    
public  RowKey[]findAll(String fieldId, Object value)
    
public  RowKey[]findAll(String[] fieldIds, Object[] values)
    
public  RowKey[]findAll(FieldKey fieldKey, Object value)
     Finds all rows with the specified value stored under the specified field key.
public  RowKey[]findAll(FieldKey[] fieldKeys, Object[] values)
     Finds all rows with the specified values stored under the specified field keys.
public  RowKeyfindFirst(String fieldId, Object value)
    
public  RowKeyfindFirst(String[] fieldIds, Object[] values)
    
public  RowKeyfindFirst(FieldKey fieldKey, Object value)
     Finds the first row with the specified value stored under the specified field key.
public  RowKeyfindFirst(FieldKey[] fieldKeys, Object[] values)
     Finds the first row with the specified values stored under the specified field keys.
protected  voidfireCursorChanged(RowKey oldRow, RowKey newRow)
    
protected  voidfireCursorChanging(RowKey oldRow, RowKey newRow)
     Fires a cursorChanging event to all registered TableCursorListener s.
protected  voidfireRowAdded(RowKey newRow)
    
protected  voidfireRowRemoved(RowKey oldRow)
    
protected  voidfireValueChanged(FieldKey fieldKey, RowKey row, Object oldValue, Object newValue)
    
public  RowKey[]getAllRows()
     Returns all the RowKeys, which may force the underlying dataprovider to go and perform an expensive operation to fetch them.
protected  intgetCursorIndex()
    
public  RowKeygetCursorRow()
    
abstract public  intgetRowCount()
    
public  RowKeygetRowKey(String rowId)
    
public  RowKey[]getRowKeys(int count, RowKey afterRow)
    
public  TableCursorListener[]getTableCursorListeners()
    
public  TableDataListener[]getTableDataListeners()
    
abstract public  ClassgetType(FieldKey fieldKey)
    
abstract public  ObjectgetValue(FieldKey fieldKey, RowKey row)
    
public  ObjectgetValue(String fieldId, RowKey row)
    
public  ObjectgetValue(FieldKey fieldKey)
    
abstract public  RowKeyinsertRow(RowKey beforeRow)
    
abstract public  booleanisReadOnly(FieldKey fieldKey)
    
public  booleanisRowAvailable(RowKey row)
    
abstract public  voidremoveRow(RowKey row)
    
public  voidremoveTableCursorListener(TableCursorListener listener)
    
public  voidremoveTableDataListener(TableDataListener l)
    
protected  booleansetCursorIndex(int index)
    
public  voidsetCursorRow(RowKey row)
    
abstract public  voidsetValue(FieldKey fieldKey, RowKey row, Object value)
    
public  voidsetValue(String fieldId, RowKey row, Object value)
    
public  voidsetValue(FieldKey fieldKey, Object value)
    

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



rowKeyList
protected ArrayList rowKeyList(Code)



rowKeyMap
protected HashMap rowKeyMap(Code)



tcListeners
protected TableCursorListener tcListeners(Code)

Array of TableCursorListener instances registered for this TableDataProvider .






Method Detail
addTableCursorListener
public void addTableCursorListener(TableCursorListener listener)(Code)



addTableDataListener
public void addTableDataListener(TableDataListener l)(Code)



appendRow
abstract public RowKey appendRow() throws DataProviderException(Code)



canAppendRow
abstract public boolean canAppendRow() throws DataProviderException(Code)



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



canRemoveRow
abstract public boolean canRemoveRow(RowKey row) 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)



findAll
public RowKey[] findAll(String fieldId, Object value) throws DataProviderException(Code)

See Also:   AbstractTableDataProvider.findAll(FieldKey,Object)
See Also:   



findAll
public RowKey[] findAll(String[] fieldIds, Object[] values) throws DataProviderException(Code)

See Also:   AbstractTableDataProvider.findAll(FieldKey[],Object[])
See Also:   



findAll
public RowKey[] findAll(FieldKey fieldKey, Object value) throws DataProviderException(Code)
Finds all rows with the specified value stored under the specified field key.
Parameters:
  fieldKey - FieldKey
Parameters:
  value - Object RowKey[]



findAll
public RowKey[] findAll(FieldKey[] fieldKeys, Object[] values) throws DataProviderException(Code)
Finds all rows with the specified values stored under the specified field keys.
Parameters:
  fieldKeys - FieldKey[]
Parameters:
  values - Object[] RowKey[]



findFirst
public RowKey findFirst(String fieldId, Object value) throws DataProviderException(Code)

See Also:   AbstractTableDataProvider.findFirst(FieldKey,Object)
See Also:   



findFirst
public RowKey findFirst(String[] fieldIds, Object[] values) throws DataProviderException(Code)

See Also:   AbstractTableDataProvider.findFirst(FieldKey[],Object[])
See Also:   



findFirst
public RowKey findFirst(FieldKey fieldKey, Object value) throws DataProviderException(Code)
Finds the first row with the specified value stored under the specified field key.
Parameters:
  fieldKey - FieldKey
Parameters:
  value - Object RowKey



findFirst
public RowKey findFirst(FieldKey[] fieldKeys, Object[] values) throws DataProviderException(Code)
Finds the first row with the specified values stored under the specified field keys.
Parameters:
  fieldKeys - FieldKey[]
Parameters:
  values - Object[] RowKey



fireCursorChanged
protected void fireCursorChanged(RowKey oldRow, RowKey newRow)(Code)
Fires a cursorChanged event to all registered TableCursorListener s
Parameters:
  oldRow - The old cursor row (before the cursor change)
Parameters:
  newRow - The new cursor row (after the cursor change)



fireCursorChanging
protected void fireCursorChanging(RowKey oldRow, RowKey newRow) throws TableCursorVetoException(Code)
Fires a cursorChanging event to all registered TableCursorListener s. If a TableCursorVetoException is thrown by any listeners, the cursor will not be changed.
Parameters:
  oldRow - The old cursor row (before the cursor change)
Parameters:
  newRow - The new cursor row (after the cursor change)
throws:
  TableCursorVetoException - This method may throw aTableCursorVetoException if one of registered listeners throwsan exception. This will prevent the cursor move from occurring.



fireRowAdded
protected void fireRowAdded(RowKey newRow)(Code)
Fires a rowAdded event to all registered TableDataListener s
Parameters:
  newRow - The newly added row



fireRowRemoved
protected void fireRowRemoved(RowKey oldRow)(Code)
Fires a rowRemoved event to all registered TableDataListener s
Parameters:
  oldRow - The removed row



fireValueChanged
protected void fireValueChanged(FieldKey fieldKey, RowKey row, Object oldValue, Object newValue)(Code)
Fires a valueChanged event to all registered TableDataListener s
Parameters:
  row - The row of the value change
Parameters:
  fieldKey - The FieldKey of the value change
Parameters:
  oldValue - The old value (before the value change)
Parameters:
  newValue - The new value (after the value change)



getAllRows
public RowKey[] getAllRows() throws DataProviderException(Code)
Returns all the RowKeys, which may force the underlying dataprovider to go and perform an expensive operation to fetch them. RowKey[] All of the row keys in this TableDataProvider



getCursorIndex
protected int getCursorIndex()(Code)



getCursorRow
public RowKey getCursorRow() throws DataProviderException(Code)



getRowCount
abstract 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)



getTableCursorListeners
public TableCursorListener[] getTableCursorListeners()(Code)



getTableDataListeners
public TableDataListener[] getTableDataListeners()(Code)



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



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



getValue
public Object getValue(String fieldId, RowKey row) throws DataProviderException(Code)

See Also:   AbstractTableDataProvider.getValue(FieldKey,RowKey)
See Also:   



getValue
public Object getValue(FieldKey fieldKey) throws DataProviderException(Code)



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



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



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



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



removeTableCursorListener
public void removeTableCursorListener(TableCursorListener listener)(Code)



removeTableDataListener
public void removeTableDataListener(TableDataListener l)(Code)



setCursorIndex
protected boolean setCursorIndex(int index)(Code)



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



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



setValue
public void setValue(String fieldId, RowKey row, Object value) throws DataProviderException(Code)

See Also:   AbstractTableDataProvider.setValue(FieldKey,RowKey,Object)
See Also:   



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



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.