File: cdata.rb

package info (click to toggle)
ruby-ox 2.1.1-2%2Bdeb9u1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 540 kB
  • sloc: ansic: 7,178; ruby: 415; makefile: 2
file content (12 lines) | stat: -rw-r--r-- 247 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12

module Ox
  # CData represents a CDATA element in an XML document.
  class CData < Node
    # Creates a CDATA element.
    # @param value [String] value for the CDATA contents
    def initialize(value)
      super
    end

  end # CData
end # Ox