class RDoc::Markup::Table

A section of table

Attributes

align[RW]
body[RW]
header[RW]

Public Class Methods

new(header, align, body) click to toggle source
# File rdoc/markup/table.rb, line 8
def initialize header, align, body
  @header, @align, @body = header, align, body
end

Public Instance Methods

==(other) click to toggle source
# File rdoc/markup/table.rb, line 12
def == other
  self.class == other.class and
    @header == other.header and
    @align == other.align and
    @body == other.body
end
accept(visitor) click to toggle source
# File rdoc/markup/table.rb, line 19
def accept visitor
  visitor.accept_table @header, @body, @align
end