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

All known Subclasses:   com.sun.rave.web.ui.model.DefaultTableDataProvider,
ObjectArrayDataProvider
public class ObjectArrayDataProvider extends AbstractTableDataProvider implements Serializable(Code)

This TableDataProvider wraps access to an array of Java Objects. The FieldKey s correspond to the JavaBean properties and optionally the public member fields of the Java Objects.

Note that this TableDataProvider determines which fields are available by examining the underlying component data type of the array. If you pass in an array that is of type Object[], then, perhaps with initialization code like this:

 Map map = ...;
 return new ObjectArrayDataProvider(map.values().toArray());
 

the fields of your actual object type will not be available. If you know that your data is all of type Foo, do this instead:

 Map map = ...;
 return new ObjectArrayDataProvider
 ((Foo[]) map.values().toArray(new Foo[0]));
 

Since this TableDataProvider wraps an array, and arrays in Java are not intrinsically resizeable, this implementation will return false for any call to canAppendRow(), canInsertRow(), or canRemoveRow(). It will throw UnsupportedOperationException if you attempt to call appendRow(), insertRow(), or removeRow().

WARNING - Until you call setArray() or setObjectType() with a non-null parameter, or use a constructor variant that accepts an non-null array, 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 an array of any Java Objects. For this class to remain Serializable, the contained Objects must also be Serializable.


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



Constructor Summary
public  ObjectArrayDataProvider()
    

Construct a new ObjectArrayDataProvider with no known data.

public  ObjectArrayDataProvider(Object array)
    
public  ObjectArrayDataProvider(Object array, boolean includeFields)
    

Method Summary
public  RowKeyappendRow()
    
public  booleancanAppendRow()
    
public  booleancanInsertRow(RowKey beforeRow)
    
public  booleancanRemoveRow(RowKey row)
    
public  Object[]getArray()
    
public  FieldKeygetFieldKey(String fieldId)
    
public  FieldKey[]getFieldKeys()
    
public  ClassgetObjectType()
    

Return the object type that this data provider contains.

public  intgetRowCount()
    
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  voidremoveRow(RowKey row)
    
public  voidsetArray(Object array)
    

Replace the array that we are wrapping.

public  voidsetIncludeFields(boolean includeFields)
    

Set the includeFields property.

public  voidsetObjectType(Class objectType)
    

Set the object type contained in this ObjectListDataProvider.

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


Constructor Detail
ObjectArrayDataProvider
public ObjectArrayDataProvider()(Code)

Construct a new ObjectArrayDataProvider with no known data. The setArray() method can be used to set the contained array.




ObjectArrayDataProvider
public ObjectArrayDataProvider(Object array)(Code)

Constructs a new ObjectArraytDataProvider wrapping the specified array.


Parameters:
  array - Array to be wrapped



ObjectArrayDataProvider
public ObjectArrayDataProvider(Object array, boolean includeFields)(Code)

Constructs a new ObjectArraytDataProvider wrapping the specified array and value of the includeFields property.


Parameters:
  array - Array to be wrapped
Parameters:
  includeFields - Desired includeFields property




Method Detail
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)



getArray
public Object[] getArray()(Code)
Return the array that we are wrapping.




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



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



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.




getRowCount
public int getRowCount() throws DataProviderException(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)



isIncludeFields
public boolean isIncludeFields()(Code)

Return the state of the includeFields property.




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



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

Remove the object at the specified row from the list.




setArray
public void setArray(Object array)(Code)

Replace the array that we are wrapping. In addition, the objectType property will be reset based on the class of the underlying element type.


Parameters:
  array - The new array to be wrapped



setIncludeFields
public void setIncludeFields(boolean includeFields)(Code)

Set the includeFields property. This affects the set of FieldKey s that this 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



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



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.