1 package net.sourceforge.argval.packageinfo;
2
3
4
5
6 /**
7 * Classes implementing this interface, accept to get visitors of the type
8 * <code>PackageVisitor</code> along.
9 *
10 * @author <a href="http://sourceforge.net/users/verhagent/">T. Verhagen</a>
11 */
12 public interface PackageInfoVisitorAcceptor {
13
14 /**
15 * Called through the client, which send the visitor along.
16 *
17 * @param visitor The visitor.
18 */
19 void accept(PackageInfoVisitor visitor);
20
21 }