001package com.box.sdkgen.internal; 002 003import java.lang.annotation.ElementType; 004import java.lang.annotation.Retention; 005import java.lang.annotation.RetentionPolicy; 006import java.lang.annotation.Target; 007 008@Retention(RetentionPolicy.RUNTIME) 009@Target({ElementType.FIELD, ElementType.METHOD}) 010public @interface Nullable {}