home *** CD-ROM | disk | FTP | other *** search
/ One Click 21 (Special) / OC021.iso / Interface / it.dig / scripts / __Packages / mx / xpath / NodePathInfo.as < prev    next >
Encoding:
Text File  |  2006-07-04  |  347 b   |  19 lines

  1. class mx.xpath.NodePathInfo
  2. {
  3.    var __nodeName = null;
  4.    var __filter = null;
  5.    function NodePathInfo(nodeName, filter)
  6.    {
  7.       this.__nodeName = nodeName;
  8.       this.__filter = filter;
  9.    }
  10.    function get nodeName()
  11.    {
  12.       return this.__nodeName;
  13.    }
  14.    function get filter()
  15.    {
  16.       return this.__filter;
  17.    }
  18. }
  19.