hl_java.h 867 B

123456789101112131415161718192021222324252627282930313233343536
  1. /*
  2. * This program is free software; you can redistribute it and/or
  3. * modify it under the terms of the GNU General Public License
  4. * as published by the Free Software Foundation; either version 2
  5. * of the License, or (at your option) any later version.
  6. *
  7. * This program is distributed in the hope that it will be useful,
  8. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. * GNU General Public License for more details.
  11. * Author: g0tsu
  12. * Email: g0tsu at dnmx.0rg
  13. */
  14. const int HL_JAVA_EXPR_SIZ = 4;
  15. const char *HL_JAVA_EXPR[] = {
  16. "null",
  17. "false",
  18. "true",
  19. "new"
  20. };
  21. const int HL_JAVA_TYPE_SIZ = 1;
  22. const char *HL_JAVA_TYPE[] = {
  23. "boolean"
  24. };
  25. const int HL_JAVA_DECL_SIZ = 4;
  26. const char *HL_JAVA_DECL[] = {
  27. "public",
  28. "private",
  29. "protected",
  30. "class"
  31. };