/plugins/LaTeXTools/tags/plugin_release_0-5/latextools/uk/co/antroy/latextools/LaTeXCompletion.java

# · Java · 58 lines · 17 code · 11 blank · 30 comment · 0 complexity · f69b2b30ce6de9f49d117298ddb5426b MD5 · raw file

  1. /*:folding=indent:
  2. * LaTeXCompletion.java - Code completion.
  3. * Copyright (C) 2003 Anthony Roy
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License
  7. * as published by the Free Software Foundation; either version 2
  8. * of the License, or any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  18. */
  19. package uk.co.antroy.latextools;
  20. import sidekick.SideKickCompletion;
  21. public class LaTeXCompletion
  22. extends SideKickCompletion {
  23. //~ Constructors ..........................................................
  24. public LaTeXCompletion() {
  25. items.add("Bertrand");
  26. items.add("Gem Gem");
  27. }
  28. //~ Methods ...............................................................
  29. /**
  30. * The length of the text being completed (popup will be positioned there).
  31. * @return ¤
  32. */
  33. public int getTokenLength() {
  34. return 1;
  35. }
  36. /**
  37. * @param selectedIndex -1 if the popup is empty, otherwise the index of
  38. * the selected completion.
  39. * @param keyChar the character typed by the user.
  40. * @return ¤
  41. */
  42. public boolean handleKeystroke(int selectedIndex, char keyChar) {
  43. return false;
  44. }
  45. public void insert(int index) {
  46. }
  47. }