diff options
Diffstat (limited to 'java/common/MethodDelegate.tpl')
-rw-r--r-- | java/common/MethodDelegate.tpl | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/java/common/MethodDelegate.tpl b/java/common/MethodDelegate.tpl new file mode 100644 index 0000000000..e5ab1ae1e7 --- /dev/null +++ b/java/common/MethodDelegate.tpl @@ -0,0 +1,12 @@ +package org.apache.qpidity.transport; + +public abstract class MethodDelegate<C> { + +${ +from genutil import * + +for c in composites: + name = cname(c) + out(" public void $(dromedary(name))(C context, $name struct) {}\n") +} +} |