document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. public @interface Basic{
  2.    FetchType fetch( ) default EAGER;
  3.    boolean optional( ) default true;
  4. }
  5.  
  6. public enum FetchType{
  7.    LAZY, EAGER
  8. }
');