File: comment.rb

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

module Ox
  # Coments represent XML comments in an XML document. A comment as value
  # attribute only.
  class Comment < Node
    # Creates a new Comment with the specified value.
    # @param value [String] string value for the comment
    def initialize(value)
      super
    end

  end # Comment
end # Ox