1 package net.sourceforge.argval.message;
2
3
4
5
6 /**
7 * Implementations accepting the {@link MessageStoreVisitor}, should implement
8 * this interface.
9 *
10 * @author T. Verhagen
11 */
12 public interface MessageStoreVisitorAccepter {
13
14 void accept(MessageStoreVisitor visitor);
15
16 }