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

All known Subclasses:   movieslib.MovieListDataProvider,
ObjectListDataProvider
public class ObjectListDataProvider extends AbstractTableDataProvider implements Serializable,TransactionalDataProvider(Code)

This com.sun.data.provider.TableDataProvider wraps access to a list of Java Objects. The FieldKey s correspond to the JavaBean properties and optionally the public member fields of the Java Object.

This class implements TransactionalDataProvider semantics, meaning that all updates to existing fields, as well as inserted and deleted rows, are cached until commitChanges() is called. Once that call is made, any RowKey you have retrieved from this instance is invalid, and must be reacquired.

WARNING - Until you call setList() or setObjectType() with a non-null parameter, or use a constructor variant that accepts an non-null non-empty list, no information about field keys will be available. Therefore, any attempt to reference a FieldKey or field identifier in a method call will throw IllegalArgumentException.

NOTE about Serializable: This class wraps access to a list of any Java Objects. The Objects can be swapped out using the setObject(Object) method. For this class to remain Serializable, the contained Objects must also be Serializable.


author:
   Joe Nuxoll
author:
   Winston Prakash (bug fixes)



Constructor Summary
public  ObjectListDataProvider()
    

Construct a new ObjectListDataProvider with no known object type.

public  ObjectListDataProvider(List list)
    

Constructs a new ObjectListDataProvider wrapping the specified list.

public  ObjectListDataProvider(List list, boolean includeFields)
    
public  ObjectListDataProvider(Class objectType)
    

Constructs a new ObjectListDataProvider for the specified object type.

public  ObjectListDataProvider(Class objectType, boolean includeFields)
    

Method Summary
public  voidaddObject(Object object)
    
public  voidaddTransactionalDataListener(TransactionalDataListener listener)
    
public  RowKeyappendRow()
    
public  RowKeyappendRow(Object object)
    
public  booleancanAppendRow()
    
public  booleancanInsertRow(RowKey beforeRow)
    
public  booleancanRemoveRow(RowKey row)
    
public  voidclearObjectList()
    
public  voidcommitChanges()
    
public  FieldKeygetFieldKey(String fieldId)
    
public  FieldKey[]getFieldKeys()
    
public  ListgetList()
    
public  ObjectgetObject(RowKey row)
    
public  ClassgetObjectType()
    

Return the object type that this data provider contains.

public  Object[]getObjects()
    
public  intgetRowCount()
    
public  TransactionalDataListener[]getTransactionalDataListeners()
    
public  ClassgetType(FieldKey fieldKey)
    
public  ObjectgetValue(FieldKey fieldKey)
    
public  ObjectgetValue(FieldKey fieldKey, RowKey rowKey)
    
public  RowKeyinsertRow(RowKey beforeRow)
    
public  booleanisIncludeFields()
    
public  booleanisReadOnly(FieldKey fieldKey)
    
public  booleanisRemoved(RowKey row)
    
public  booleanisRowAvailable(RowKey row)
    

Return true if the specified RowKey represents a row in the original list, or a row that has been appended.

public  booleanisUserResizable()
    

Return the current state of the userResizable property.

public  voidremoveObject(Object object)
    
public  voidremoveObject(RowKey row)
    
public  voidremoveRow(RowKey row)
    
public  voidremoveTransactionalDataListener(TransactionalDataListener listener)
    
public  voidrevertChanges()
    
public  voidsetIncludeFields(boolean includeFields)
    

Set the includeFields property.

public  voidsetList(List list)
    

Replace the List that we are wrapping.

public  voidsetObject(RowKey row, Object object)
    
public  voidsetObjectType(Class objectType)
    

Set the object type contained in this ObjectListDataProvider.

public  voidsetUserResizable(boolean resizable)
    

Set the user resizable property.

public  voidsetValue(FieldKey fieldKey, Object value)
    
public  voidsetValue(FieldKey fieldKey, RowKey rowKey, Object value)
    


Constructor Detail
ObjectListDataProvider
public ObjectListDataProvider()(Code)

Construct a new ObjectListDataProvider with no known object type. The setObjectType() method can be used to set the object type. If not set, the first added object will automatically define the object type.




ObjectListDataProvider
public ObjectListDataProvider(List list)(Code)

Constructs a new ObjectListDataProvider wrapping the specified list.


Parameters:
  list - List to be wrapped



ObjectListDataProvider
public ObjectListDataProvider(List list, boolean includeFields)(Code)

Constructs a new ObjectListDataProvider wrapping the specified list with the specified include fields flag.


Parameters:
  list - List to be wrapped
Parameters:
  includeFields - Desired include fields property setting



ObjectListDataProvider
public ObjectListDataProvider(Class objectType)(Code)

Constructs a new ObjectListDataProvider for the specified object type.


Parameters:
  objectType - Desired object type Class



ObjectListDataProvider
public ObjectListDataProvider(Class objectType, boolean includeFields)(Code)

Constructs a new ObjectListDataProvider for the specified object type and includeFields property value.


Parameters:
  objectType - Desired object type Class
Parameters:
  includeFields - Desired include fields property setting




Method Detail
addObject
public void addObject(Object object)(Code)

Append the specified object to the list of contained objects.


Parameters:
  object - The Object to store in the list



addTransactionalDataListener
public void addTransactionalDataListener(TransactionalDataListener listener)(Code)



appendRow
public RowKey appendRow() throws DataProviderException(Code)

Construct a new instance of the specified object type and append it to the end of the list.




appendRow
public RowKey appendRow(Object object) throws DataProviderException(Code)

Append the specified object to the end of the list.


Parameters:
  object - Object to be appended



canAppendRow
public boolean canAppendRow() throws DataProviderException(Code)

Return true if the userResizable property is set to true, and there is a public zero-args constructor for the class specified by the objectType property.




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

Return true if the userResizable property is set to true, and there is a public zero-args constructor for the class specified by the objectType property.




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

Return true if the userResizable property is set to true.




clearObjectList
public void clearObjectList()(Code)

Clear the list of contained objects.




commitChanges
public void commitChanges() throws DataProviderException(Code)

Cause any cached updates to existing field values, as well as inserted and deleted rows, to be flowed through to the underlying List wrapped by this com.sun.data.provider.DataProvider .




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



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



getList
public List getList()(Code)
Return the List that we are wrapping.




getObject
public Object getObject(RowKey row)(Code)

Returns the object stored at the specified row.


Parameters:
  row - The desired row to retrieve the contained object from



getObjectType
public Class getObjectType()(Code)

Return the object type that this data provider contains. This determines the list of FieldKey s that this provider supplies.




getObjects
public Object[] getObjects()(Code)

Return the contained objects as an array.




getRowCount
public int getRowCount() throws DataProviderException(Code)



getTransactionalDataListeners
public TransactionalDataListener[] getTransactionalDataListeners()(Code)



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



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



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



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

Construct a new instance of the specified object type and insert it at the specified position in the list.


Parameters:
  beforeRow - Row before which to insert the new row



isIncludeFields
public boolean isIncludeFields()(Code)

Return the state of the includeFields property.




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



isRemoved
public boolean isRemoved(RowKey row)(Code)

Return true if the specified row has been marked for removal on the next call to commitChanges().


Parameters:
  row - The RowKey of the row to check



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

Return true if the specified RowKey represents a row in the original list, or a row that has been appended. FIXME - deal with RowKey s for inserted rows too, when inserts are supported.


Parameters:
  row - RowKey to test for availability



isUserResizable
public boolean isUserResizable()(Code)

Return the current state of the userResizable property. Note that the wrapped list will not be actually resizable unless there is a public no-args constructor on the objectType class.




removeObject
public void removeObject(Object object)(Code)

Remove the specified object from the list of contained objects.


Parameters:
  object - The Object to remove from the list



removeObject
public void removeObject(RowKey row)(Code)

Remove the object at the specified row from the list of contained objects.


Parameters:
  row - The desired Object row to remove from the list



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

Remove the object at the specified row from the list.




removeTransactionalDataListener
public void removeTransactionalDataListener(TransactionalDataListener listener)(Code)



revertChanges
public void revertChanges() throws DataProviderException(Code)



setIncludeFields
public void setIncludeFields(boolean includeFields)(Code)

Set the includeFields property. This affects the set of FieldKey s that this com.sun.data.provider.DataProvider emits. If the property is set to true (the default), then public fields will be included in the list of available keys (intermixed with the public properties). Otherwise, only the public properties will be available.


Parameters:
  includeFields - The new include fields value



setList
public void setList(List list)(Code)

Replace the List that we are wrapping. In addition, the objectType property will be reset based on the class of the first element in the list (if any). If the list is empty, objectType will be set to null.
Parameters:
  list - The new list to be wrapped




setObject
public void setObject(RowKey row, Object object)(Code)

Replace the object at the specified row.


Parameters:
  row - The desired row to set the contained object
Parameters:
  object - The new object to set at the specified row



setObjectType
public void setObjectType(Class objectType)(Code)

Set the object type contained in this ObjectListDataProvider. This type determines the list of public properties and fields to expose as FieldKey s. If no object type is specified, the first added object's class will be used as the object type.


Parameters:
  objectType - The desired Class type to be contained in thisObjectDataProvider



setUserResizable
public void setUserResizable(boolean resizable)(Code)

Set the user resizable property. If set to true (the default), the resizability of this ObjectListDataProvider is based on wether or not a public default constructor exists in the object type. If the userResizable propert is set to false, then this ObjectListDataProvider will not be resizable, regardless of the existence of a public default constructor on the object type.


Parameters:
  resizable - true to make this ObjectListDataProviderresizable, pending the existence of a public default constructoron the contained object type, or false to make itnon-resizable.
See Also:   com.sun.data.provider.TableDataProvider.canInsertRow(RowKey beforeRow)



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



setValue
public void setValue(FieldKey fieldKey, RowKey rowKey, 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.