document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. @Target({TYPE}) @Retention(RUNTIME)
  2. public @interface Table
  3. {
  4.    String name( ) default "";
  5.    String catalog( ) default "";
  6.    String schema( ) default "";
  7.    UniqueConstraint
  8.  uniqueConstraints( ) default {};
  9. }
');