Uses of Class
org.spiderwiz.core.DataObject
Package | Description |
---|---|
org.spiderwiz.core |
Core classes of the Spiderwiz framework.
|
-
Uses of DataObject in org.spiderwiz.core
Classes in org.spiderwiz.core with type parameters of type DataObject Modifier and Type Class Description class
CatchAllFilter<T extends DataObject>
An implementation ofFilter
that catches all data objects of a specific type.class
Filter<T extends DataObject>
A base class for implementing Data Object Filters.Subclasses of DataObject in org.spiderwiz.core Modifier and Type Class Description class
QueryObject
A base class for Query Objects.Methods in org.spiderwiz.core with type parameters of type DataObject Modifier and Type Method Description <T extends DataObject>
TDataObject. createChild(Class<T> type, String id)
Creates a child data object.static <T extends DataObject>
TMain. createTopLevelObject(Class<T> type, String id)
Creates a top level data object.<T extends DataObject>
TDataObject. getChild(Class<T> type, String id)
Returns a child of this object with specific class type and object ID.<T extends DataObject>
List<T>DataObject. getFilteredChildren(Filter<T> filter)
Returns a collection of all object offspring of a given type that adhere to given rules.Methods in org.spiderwiz.core that return DataObject Modifier and Type Method Description protected DataObject
DataObject. deserialize(String fields)
Deserializes the object.DataObject
DataObject. getParent()
Returns the parent object of this object.DataObject
Main. getRootObject()
Returns the root data object.DataObject
DataObject. remove()
Removes the object.DataObject
DataObject. rename(String newID)
Renames the object.Methods in org.spiderwiz.core with parameters of type DataObject Modifier and Type Method Description protected boolean
Filter. filterParent(DataObject parent)
Implement this method to returntrue
if filtering shall be applied on the branch under this object.boolean
Resetter. resetObject(DataObject object)
Resets one item.Method parameters in org.spiderwiz.core with type arguments of type DataObject Modifier and Type Method Description protected void
Main. populateObjectFactory(List<Class<? extends DataObject>> factoryList)
Registers application-specific object handlers.