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

搜索引擎

开发平台:

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. /* Generated By:JavaCC: Do not edit this line. Token.java Version 3.0 */
  17. using System;
  18. namespace Lucene.Net.Analysis.Standard
  19. {
  20. /// <summary> Describes the input token stream.</summary>
  21. public class Token
  22. {
  23. /// <summary> An integer that describes the kind of this token.  This numbering
  24. /// system is determined by JavaCCParser, and a table of these numbers is
  25. /// stored in the file ...Constants.java.
  26. /// </summary>
  27. public int kind;
  28. /// <summary> beginLine and beginColumn describe the position of the first character
  29. /// of this token; endLine and endColumn describe the position of the
  30. /// last character of this token.
  31. /// </summary>
  32. public int beginLine, beginColumn, endLine, endColumn;
  33. /// <summary> The string image of the token.</summary>
  34. public System.String image;
  35. /// <summary> A reference to the next regular (non-special) token from the input
  36. /// stream.  If this is the last token from the input stream, or if the
  37. /// token manager has not read tokens beyond this one, this field is
  38. /// set to null.  This is true only if this token is also a regular
  39. /// token.  Otherwise, see below for a description of the contents of
  40. /// this field.
  41. /// </summary>
  42. public Token next;
  43. /// <summary> This field is used to access special tokens that occur prior to this
  44. /// token, but after the immediately preceding regular (non-special) token.
  45. /// If there are no such special tokens, this field is set to null.
  46. /// When there are more than one such special token, this field refers
  47. /// to the last of these special tokens, which in turn refers to the next
  48. /// previous special token through its specialToken field, and so on
  49. /// until the first special token (whose specialToken field is null).
  50. /// The next fields of special tokens refer to other special tokens that
  51. /// immediately follow it (without an intervening regular token).  If there
  52. /// is no such token, this field is null.
  53. /// </summary>
  54. public Token specialToken;
  55. /// <summary> Returns the image.</summary>
  56. public override System.String ToString()
  57. {
  58. return image;
  59. }
  60. /// <summary> Returns a new Token object, by default. However, if you want, you
  61. /// can create and return subclass objects based on the value of ofKind.
  62. /// Simply add the cases to the switch for all those special cases.
  63. /// For example, if you have a subclass of Token called IDToken that
  64. /// you want to create if ofKind is ID, simlpy add something like :
  65. /// 
  66. /// case MyParserConstants.ID : return new IDToken();
  67. /// 
  68. /// to the following switch statement. Then you can cast matchedToken
  69. /// variable to the appropriate type and use it in your lexical actions.
  70. /// </summary>
  71. public static Token NewToken(int ofKind)
  72. {
  73. switch (ofKind)
  74. {
  75. default:  return new Token();
  76. }
  77. }
  78. }
  79. }