| 
 | Search this API | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objecty.util.DataAcceptorAdapter
public abstract class DataAcceptorAdapter
An abstract adapter class for accepting data. The data accepting methods
 in this class throw a UnsupportedOperationException and
 defined(Object) always returns false.
 
This class exists as a convenience for creating data acceptor objects.
Extend this class to access either typed or untyped data for a certain lookup domain.
| Constructor Summary | |
|---|---|
| DataAcceptorAdapter() | |
| Method Summary | |
|---|---|
|  boolean | defined(java.lang.Object dataHolder)Returns falsefor all data holders. | 
|  void | set(java.lang.Object dataHolder,
    java.lang.Object value)Subclasses may override this method to set object values associated with a data holder. | 
|  void | setBool(java.lang.Object dataHolder,
        boolean value)Subclasses may override this method to set boolean values associated with a data holder. | 
|  void | setDouble(java.lang.Object dataHolder,
          double value)Subclasses may override this method to set double values associated with a data holder. | 
|  void | setInt(java.lang.Object dataHolder,
       int value)Subclasses may override this method to set integer values associated with a data holder. | 
| Methods inherited from class java.lang.Object | 
|---|
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
| Constructor Detail | 
|---|
public DataAcceptorAdapter()
| Method Detail | 
|---|
public void set(java.lang.Object dataHolder,
                java.lang.Object value)
set in interface DataAcceptorjava.lang.UnsupportedOperationException - unless overwritten.
public void setInt(java.lang.Object dataHolder,
                   int value)
setInt in interface DataAcceptorjava.lang.UnsupportedOperationException - unless overwritten.
public void setDouble(java.lang.Object dataHolder,
                      double value)
setDouble in interface DataAcceptorjava.lang.UnsupportedOperationException - unless overwritten.
public void setBool(java.lang.Object dataHolder,
                    boolean value)
setBool in interface DataAcceptorjava.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 | ||||||||