Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. /* e.g. located in a src/main/java/mypkg/MyKeys.java file */
  2. package mypkg;
  3.  
  4. public enum EditStatus { ... }
  5. public enum CustomerTypeKey { ... } // the suggestion of an IDE could be
  6. // to move this one to its own file
  7. // ...
  8.  
  9. /** do not edit! auto-generated if DB schema changes */
  10. class MyKeys {
  11. public enum EditStatusKey { ... }
  12. public enum CustomerTypeKey { ... }
  13. ... // maybe many(!) other types following
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement