| 
 | Search this API | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objecty.util.DataProviderAdapter
public abstract class DataProviderAdapter
An abstract adapter class for providing data. The data provision methods
 in this class throw a UnsupportedOperationException and
 defined(Object) always returns false.
 
This class exists as a convenience for creating data provider objects.
Extend this class to provide either typed or untyped data for a certain lookup domain.
| Constructor Summary | |
|---|---|
| DataProviderAdapter() | |
| Method Summary | |
|---|---|
|  boolean | defined(java.lang.Object dataHolder)Returns falsefor all data holders. | 
|  java.lang.Object | get(java.lang.Object dataHolder)Subclasses may override this method to provide access to object values. | 
|  boolean | getBool(java.lang.Object dataHolder)Subclasses may override this method to provide access to boolean values. | 
|  double | getDouble(java.lang.Object dataHolder)Subclasses may override this method to provide access to double values. | 
|  int | getInt(java.lang.Object dataHolder)Subclasses may override this method to provide access to integer values. | 
| Methods inherited from class java.lang.Object | 
|---|
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
| Constructor Detail | 
|---|
public DataProviderAdapter()
| Method Detail | 
|---|
public java.lang.Object get(java.lang.Object dataHolder)
get in interface DataProviderjava.lang.UnsupportedOperationException - unless overwritten.public int getInt(java.lang.Object dataHolder)
getInt in interface DataProviderjava.lang.UnsupportedOperationException - unless overwritten.public double getDouble(java.lang.Object dataHolder)
getDouble in interface DataProviderjava.lang.UnsupportedOperationException - unless overwritten.public boolean getBool(java.lang.Object dataHolder)
getBool in interface DataProviderjava.lang.UnsupportedOperationException - unless overwritten.public boolean defined(java.lang.Object dataHolder)
false for all data holders. Subclasses
 should override this method to make clear for which data holders
 there is a value accessible via this data provider.
false.| 
 | © Copyright 2000-2025, yWorks GmbH. All rights reserved. | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||