1 package net.sourceforge.argval.packageinfo; 2 3 4 5 6 /** 7 * Classes implementing this interface get access to the visited classes. 8 * 9 * @author <a href="http://sourceforge.net/users/verhagent/">T. Verhagen</a> 10 */ 11 public interface PackageInfoVisitor { 12 13 /** 14 * Get access to the <code>PackageInfo</code> instance. 15 * 16 * @param packageInfo The instance visited. 17 */ 18 void visit(PackageInfo packageInfo); 19 20 }