|
Search this API | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object y.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 false for 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 DataProvider
java.lang.UnsupportedOperationException
- unless overwritten.public int getInt(java.lang.Object dataHolder)
getInt
in interface DataProvider
java.lang.UnsupportedOperationException
- unless overwritten.public double getDouble(java.lang.Object dataHolder)
getDouble
in interface DataProvider
java.lang.UnsupportedOperationException
- unless overwritten.public boolean getBool(java.lang.Object dataHolder)
getBool
in interface DataProvider
java.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-2022, yWorks GmbH. All rights reserved. |
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |