All Downloads are FREE. Search and download functionalities are using the official Maven repository.

pocketknife.SaveState Maven / Gradle / Ivy

The newest version!
package pocketknife;

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

import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.RetentionPolicy.CLASS;

/**
 * Save and restore field.
 * 
 *     
 *         {@literal @}SaveState int i;
 *     
 * 
*/ @Retention(CLASS) @Target(FIELD) public @interface SaveState { }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy