001    package com.ochafik.lang.jnaerator.runtime;
002    import java.lang.annotation.*;
003    
004    @Retention(RetentionPolicy.RUNTIME)
005    @Target( {ElementType.FIELD} )
006    public @interface Bits {
007            int value();
008    }