aboutsummaryrefslogtreecommitdiff
path: root/src/org/gnunet/construct/UInt16.java
blob: f8dfd0d4783d8dc52ea594f302b4db3f597f7430 (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=2, signed=false)
 * 
 * @author Florian Dold
 *
 */

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

}