blob: 3ae1a78f2a0ad98698707809659e22437f0bb234 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package org.apache.qpid.transport;
public abstract class MethodDelegate<C> {
public abstract void handle(C context, Method method);
${
from genutil import *
for c in composites:
name = cname(c)
out("""
public void $(dromedary(name))(C context, $name method) {
handle(context, method);
}""")
}
}
|