Uses of Class
org.spiderwiz.core.DataObject
| Package | Description | 
|---|---|
| org.spiderwiz.core | Core classes of the Spiderwiz framework. | 
- 
Uses of DataObject in org.spiderwiz.coreClasses in org.spiderwiz.core with type parameters of type DataObject Modifier and Type Class Description classCatchAllFilter<T extends DataObject>An implementation ofFilterthat catches all data objects of a specific type.classFilter<T extends DataObject>A base class for implementing Data Object Filters.Subclasses of DataObject in org.spiderwiz.core Modifier and Type Class Description classQueryObjectA 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 DataObjectDataObject. deserialize(String fields)Deserializes the object.DataObjectDataObject. getParent()Returns the parent object of this object.DataObjectMain. getRootObject()Returns the root data object.DataObjectDataObject. remove()Removes the object.DataObjectDataObject. rename(String newID)Renames the object.Methods in org.spiderwiz.core with parameters of type DataObject Modifier and Type Method Description protected booleanFilter. filterParent(DataObject parent)Implement this method to returntrueif filtering shall be applied on the branch under this object.booleanResetter. resetObject(DataObject object)Resets one item.Method parameters in org.spiderwiz.core with type arguments of type DataObject Modifier and Type Method Description protected voidMain. populateObjectFactory(List<Class<? extends DataObject>> factoryList)Registers application-specific object handlers.