All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.srplib.reflection.classgraph.ClassGraphVisitor Maven / Gradle / Ivy

There is a newer version: 0.9.0
Show newest version
package org.srplib.reflection.classgraph;

import org.srplib.visitor.Visitor;

/**
 * Specialization of Visitor for ClassGraph object.
 *
 * @author Anton Pechinsky
 */
public interface ClassGraphVisitor extends Visitor {

    /**
     * Method is called for each node of visited structure.
     *
     * 

Implementing classes may replace default node with custom implementation (e.g. having addidional attributes).

* * @param node ClassGraphNode default class graph node. */ T resolveNode(ClassGraphNode node); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy