blob: 695812ea75134fc2de04bce0f2a8ef7aac1701af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package org.apache.qpidity.transport;
${from genutil import *}
public interface Constant
{
${
constants = spec.query["amqp/constant"]
for c in constants:
name = scream(c["@name"])
value = c["@value"]
out(" public static final int $name = $value;\n")
}}
|