1 package net.sourceforge.pmd.sourcetypehandlers;
2
3 /***
4 * Implementation of VisitorStarter that does nothing.
5 *
6 * @author pieter_van_raemdonck - Application Engineers NV/SA - www.ae.be
7 */
8 public class DummyVisitorStarter implements VisitorStarter {
9
10 public void start(Object rootNode) {
11 }
12
13 }