Package com.tonic.parser.visitor
Interface Visitor<T>
-
- Type Parameters:
T- the type of element to visit
- All Known Implementing Classes:
AbstractBlockVisitor,AbstractBytecodeVisitor,AbstractClassVisitor,AbstractMethodVisitor
public interface Visitor<T>Base visitor interface for processing various bytecode elements.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidprocess(T t)Processes the given element.
-
-
-
Method Detail
-
process
void process(T t) throws IOException
Processes the given element.- Parameters:
t- the element to process- Throws:
IOException- if an I/O error occurs during processing
-
-