Uses of Interface
spark.data.SParented

Packages that use SParented
spark.data The Spark data facility provides a general mechanism for accessing objects and their components. 
 

Uses of SParented in spark.data
 

Subinterfaces of SParented in spark.data
 interface SA
          This is the interface for Spark arrays of objects.
 interface SO
          This defines the object interface for all objects in the Spark data model.
 

Classes in spark.data that implement SParented
 class SArray
          This is a concrete implementation of SA that implements arrays with arbitrary content and of dynamic length.
 class SObj
          This is a concrete implementation of SO.
 class SOReflect
          This is a concrete implementation of SO that has special properties.
 

Methods in spark.data that return SParented
 SParented SParented.myParent()
          Returns the parent of this object, if this object is part of a tree.
 SParented SObj.myParent()
           
 SParented SArray.myParent()
           
 

Methods in spark.data with parameters of type SParented
 void SParented.newParent(SParented newParent)
          changes the parent of this object.
 void SObj.newParent(SParented newParent)
           
 void SArray.newParent(SParented newParent)