aboutsummaryrefslogtreecommitdiff
path: root/src/org/gnunet/construct/Int8.java
blob: 1f818bd6a4ce2dd45e809dcf08e9851dba93ac37 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package org.gnunet.construct;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;


/**
 * Synonym for Integer(byteSize=1, signed=true)
 * 
 * @author Florian Dold
 *
 */

@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
public @interface Int8 {

}