PageRenderTime 41ms CodeModel.GetById 17ms RepoModel.GetById 1ms app.codeStats 0ms

/jEdit/tags/jedit-4-5-pre1/org/gjt/sp/jedit/textarea/ColumnBlockLine.java

#
Java | 79 lines | 42 code | 9 blank | 28 comment | 0 complexity | 58c287f735481501352992c86129cc75 MD5 | raw file
Possible License(s): BSD-3-Clause, AGPL-1.0, Apache-2.0, LGPL-2.0, LGPL-3.0, GPL-2.0, CC-BY-SA-3.0, LGPL-2.1, GPL-3.0, MPL-2.0-no-copyleft-exception, IPL-1.0
  1. /*
  2. * jEdit - Programmer's Text Editor
  3. * :tabSize=8:indentSize=8:noTabs=false:
  4. * :folding=explicit:collapseFolds=1:
  5. *
  6. * Copyright Š 2010 jEdit contributors
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License
  10. * as published by the Free Software Foundation; either version 2
  11. * of the License, or any later version.
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  20. */
  21. package org.gjt.sp.jedit.textarea;
  22. public class ColumnBlockLine
  23. {
  24. private int line;
  25. int colStartIndex;
  26. int colEndIndex;
  27. float lineLength;
  28. //{{{ ColumnBlockLine() method
  29. public ColumnBlockLine(int line,int lineStartIndex,int lineEndIndex)
  30. {
  31. this.line = line;
  32. this.colEndIndex = lineEndIndex;
  33. this.colStartIndex = lineStartIndex;
  34. }//}}}
  35. //{{{ getLine() method
  36. public int getLine()
  37. {
  38. return line;
  39. }//}}}
  40. //{{{ getColumnStartIndex() method
  41. public int getColumnStartIndex()
  42. {
  43. return colStartIndex;
  44. }//}}}
  45. //{{{ getColumnEndIndex() method
  46. public int getColumnEndIndex()
  47. {
  48. return colEndIndex;
  49. }//}}}
  50. //{{{ setLineLength() method
  51. public void setLineLength(float lineLength)
  52. {
  53. this.lineLength = lineLength;
  54. }//}}}
  55. //{{{ getLineLength() method
  56. public float getLineLength()
  57. {
  58. return lineLength;
  59. }//}}}
  60. //{{{ toString() method
  61. public String toString()
  62. {
  63. return "[ColumnBlockLine]colStartIndex:"+colStartIndex+" colEndIndex:"+ colEndIndex+" lineLength:"+lineLength+" line:"+line;
  64. }//}}}
  65. //{{{ updateLineNo() method
  66. public void updateLineNo(int line )
  67. {
  68. this.line+=line;
  69. }//}}}
  70. }