Package hudson.model

Class ItemVisitor


  • public abstract class ItemVisitor
    extends Object
    Walks the tree structure that consists of ItemGroup and Item.
    Since:
    1.402
    Author:
    Kohsuke Kawaguchi
    • Constructor Detail

      • ItemVisitor

        public ItemVisitor()
    • Method Detail

      • onItemGroup

        public void onItemGroup​(ItemGroup<?> group)
        Visits an ItemGroup by visits the member items.
      • onItem

        public void onItem​(Item i)
        Visits an Item. If it is a group, visits the children.