home *** CD-ROM | disk | FTP | other *** search
/ ftp.editplus.com / ftp.editplus.com.tar / ftp.editplus.com / epp230.exe / java.acp < prev    next >
Text File  |  2006-03-27  |  601b  |  75 lines

  1. #TITLE=Java/C#
  2. ; EditPlus Auto-completion file v1.0 written by ES-Computing.
  3. ; This file is provided as a default auto-completion file for Java and C#.
  4.  
  5. #CASE=y
  6.  
  7. #T=if
  8. if (^!)
  9. {
  10. }
  11. #T=while
  12. while (^!)
  13. {
  14. }
  15. #T=for
  16. for (^!; ; )
  17. {
  18. }
  19. #T=switch
  20. switch (^!)
  21. {
  22. case :
  23.  
  24. }
  25. #T=do
  26. do
  27. {
  28. }
  29. while (^!);
  30. #T=class
  31. class ^!
  32. {
  33. }
  34. #T=try
  35. try
  36. {
  37.     ^!
  38. }
  39. catch ()
  40. {
  41. }
  42. #T=interface
  43. interface ^!
  44. {
  45. }
  46. #T=namespace
  47. namespace ^!
  48. {
  49. }
  50. #
  51. ; C# only
  52. #T=foreach
  53. foreach (^!)
  54. {
  55. }
  56. #T=get
  57. get
  58. {
  59.     ^!
  60. }
  61. #T=set
  62. set
  63. {
  64.     ^!
  65. }
  66. #T=lock
  67. lock (^!)
  68. {
  69. }
  70. #T=struct
  71. struct ^!
  72. {
  73. }
  74. #
  75.