01: // Copyright (c) 2001 Per M.A. Bothner.
02: // This is free software; for terms and warranty disclaimer see ./COPYING.
03:
04: package gnu.mapping;
05:
06: /** An object that may have methods that provide the "action" needed
07: * by an CpsMethodProc. */
08:
09: public interface CpsMethodContainer {
10: public void apply(CpsMethodProc proc, CallContext context);
11:
12: // public int match(CpsMethodProc proc, CallContext context);
13: }
|