Interface ChildVisitor<P extends T,T>

Type Parameters:
P - Type representing the parent objects in the structure.
T - Type representing all elements (both parents and children) in the structure.
All Known Implementing Classes:
AbstractAssembly, AbstractCheckListForestBrowser, AbstractObjectForest, Assembly, AssemblyDataPickup, AssemblyReceipt, BaseObjectForest, CheckListForestBrowser, DefineAssembly, FileManager, FileViewer, ObjectForest, ObjectForestBrowser, ObjectForestEditor, ObjectForestProvider, ObjectForestViewer, ObjectTree, ObjectTreeBrowser, ObjectTreeEditor, ObjectTreeProvider, ObjectTreeViewer, ViewAssembly, ViewAssemblyDefinition

public interface ChildVisitor<P extends T,T>
The ChildVisitor interface allows for traversing and processing child elements rooted in a hierarchical structure. It defines methods for obtaining root elements and visiting child elements with specified operations.