Package org.jboss.as.pojo.descriptor
Class AbstractConfigVisitor
- java.lang.Object
-
- org.jboss.as.pojo.descriptor.AbstractConfigVisitor
-
- All Implemented Interfaces:
ConfigVisitor
- Direct Known Subclasses:
DefaultConfigVisitor
public abstract class AbstractConfigVisitor extends Object implements ConfigVisitor
Abstract config visitor.- Author:
- Ales Justin
-
-
Constructor Summary
Constructors Constructor Description AbstractConfigVisitor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Deque<ConfigVisitorNode>getCurrentNodes()Get current nodes.voidvisit(ConfigVisitorNode node)Visit node's children.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.jboss.as.pojo.descriptor.ConfigVisitor
addDependency, addDependency, addDependency, addDependency, getBeanInfo, getModule, getReflectionIndex, getState, loadModule
-
-
-
-
Method Detail
-
visit
public void visit(ConfigVisitorNode node)
Description copied from interface:ConfigVisitorVisit node's children.- Specified by:
visitin interfaceConfigVisitor- Parameters:
node- the config node
-
getCurrentNodes
public Deque<ConfigVisitorNode> getCurrentNodes()
Get current nodes.- Specified by:
getCurrentNodesin interfaceConfigVisitor- Returns:
- the current nodes
-
-