summaryrefslogtreecommitdiff
path: root/RC4/java/common/Constant.tpl
blob: 7194a61dfca83049691008e9e8f91cca8c13cc47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package org.apache.qpid.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")
}}