TermVectorOffsetInfo.cs
上传用户:zhangkuixh
上传日期:2013-09-30
资源大小:5473k
文件大小:2k
源码类别:

搜索引擎

开发平台:

C#

  1. /*
  2.  * Copyright 2004 The Apache Software Foundation
  3.  * 
  4.  * Licensed under the Apache License, Version 2.0 (the "License");
  5.  * you may not use this file except in compliance with the License.
  6.  * You may obtain a copy of the License at
  7.  * 
  8.  * http://www.apache.org/licenses/LICENSE-2.0
  9.  * 
  10.  * Unless required by applicable law or agreed to in writing, software
  11.  * distributed under the License is distributed on an "AS IS" BASIS,
  12.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13.  * See the License for the specific language governing permissions and
  14.  * limitations under the License.
  15.  */
  16. using System;
  17. namespace Lucene.Net.Index
  18. {
  19. public class TermVectorOffsetInfo
  20. {
  21. public static readonly TermVectorOffsetInfo[] EMPTY_OFFSET_INFO = new TermVectorOffsetInfo[0];
  22. private int startOffset;
  23. private int endOffset;
  24. public TermVectorOffsetInfo()
  25. {
  26. }
  27. public TermVectorOffsetInfo(int startOffset, int endOffset)
  28. {
  29. this.endOffset = endOffset;
  30. this.startOffset = startOffset;
  31. }
  32. public virtual int GetEndOffset()
  33. {
  34. return endOffset;
  35. }
  36. public virtual void  SetEndOffset(int endOffset)
  37. {
  38. this.endOffset = endOffset;
  39. }
  40. public virtual int GetStartOffset()
  41. {
  42. return startOffset;
  43. }
  44. public virtual void  SetStartOffset(int startOffset)
  45. {
  46. this.startOffset = startOffset;
  47. }
  48. public  override bool Equals(System.Object o)
  49. {
  50. if (this == o)
  51. return true;
  52. if (!(o is TermVectorOffsetInfo))
  53. return false;
  54. TermVectorOffsetInfo termVectorOffsetInfo = (TermVectorOffsetInfo) o;
  55. if (endOffset != termVectorOffsetInfo.endOffset)
  56. return false;
  57. if (startOffset != termVectorOffsetInfo.startOffset)
  58. return false;
  59. return true;
  60. }
  61. public override int GetHashCode()
  62. {
  63. int result;
  64. result = startOffset;
  65. result = 29 * result + endOffset;
  66. return result;
  67. }
  68. }
  69. }