Sha256: 36f8a179d57b2a2cbb8523bcd7580f92a23cf6badc2a05e0369639c42ccace53

Contents?: true

Size: 646 Bytes

Versions: 6

Compression:

Stored size: 646 Bytes

Contents

module LibXML
  module XML
    class SaxParser
      def filename=(value)
        warn("SaxParser.filename is deprecated.  Use SaxParser#file instead.")
        self.file = value
      end

      def file
        input.file
      end

      def file=(value)
        input.file = value
      end

      def string
        input.string
      end

      def string=(value)
        input.string = value
      end

      def document
        input.document
      end

      def document=(value)
        input.document = value
      end

      def io
        input.io
      end

      def io=(value)
        input.io = value
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
libxml-ruby-0.9.1-x86-mswin32-60 lib/libxml/sax_parser.rb
libxml-ruby-0.9.0 lib/libxml/sax_parser.rb
libxml-ruby-0.9.0-x86-mswin32-60 lib/libxml/sax_parser.rb
libxml-ruby-0.9.1 lib/libxml/sax_parser.rb
libxml-ruby-0.9.2 lib/libxml/sax_parser.rb
libxml-ruby-0.9.2-x86-mswin32-60 lib/libxml/sax_parser.rb