org.oddjob.arooa.design.HierarchyVisitor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of arooa Show documentation
Show all versions of arooa Show documentation
A Rip Off Of Ant - A drag and drop component framework.
/*
* (c) Rob Gordon 2005
*/
package org.oddjob.arooa.design;
/**
*
*/
public interface HierarchyVisitor {
public void onHierarchy(SimpleHierarchy hierarchy);
public void onLeaf(T leaf);
}