class REXML::Declaration

这是一个抽象类。你永远不会直接使用它;它作为特定声明的父类。

公共类方法

new(src) 点击切换源代码
调用父类方法 REXML::Child::new
# File rexml-3.4.0/lib/rexml/doctype.rb, line 243
def initialize src
  super()
  @string = src
end

公共实例方法

to_s() 点击切换源代码
# File rexml-3.4.0/lib/rexml/doctype.rb, line 248
def to_s
  @string+'>'
end
write( output, indent ) 点击切换源代码

已弃用

请参阅 REXML::Formatters

# File rexml-3.4.0/lib/rexml/doctype.rb, line 255
def write( output, indent )
  output << to_s
end