Exemplo n.º 1
0
 public HqlToken(HqlWordType type, string data)
 {
     _type = type;
     _data = data;
 }
Exemplo n.º 2
0
 public HqlToken(HqlWordType type, HqlField field)
 {
     _type  = type;
     _field = field;
 }
Exemplo n.º 3
0
        ///////////////////////
        // Static Functions

        ///////////////////////
        // Constructors

        public HqlToken(HqlWordType type)
        {
            _type = type;
        }