Class: REXML::NotationDecl

Inherits:
Child show all
Defined in:
lib/rexml/doctype.rb

Instance Attribute Summary collapse

Attributes inherited from Child

#parent

Instance Method Summary collapse

Methods inherited from Child

#bytes, #document, #next_sibling=, #previous_sibling=, #remove, #replace_with

Methods included from Node

#each_recursive, #find_first_recursive, #indent, #index_in_parent, #next_sibling_node, #parent?, #previous_sibling_node

Constructor Details

#initialize(name, middle, pub, sys) ⇒ NotationDecl

Returns a new instance of NotationDecl.



242
243
244
245
246
247
248
# File 'lib/rexml/doctype.rb', line 242

def initialize name, middle, pub, sys
  super(nil)
  @name = name
  @middle = middle
  @public = pub
  @system = sys
end

Instance Attribute Details

#publicObject

Returns the value of attribute public



241
242
243
# File 'lib/rexml/doctype.rb', line 241

def public
  @public
end

#systemObject

Returns the value of attribute system



241
242
243
# File 'lib/rexml/doctype.rb', line 241

def system
  @system
end

Instance Method Details

#nameObject

This method retrieves the name of the notation.

Method contributed by Henrik Martensson



265
266
267
# File 'lib/rexml/doctype.rb', line 265

def name
  @name
end

#to_sObject



250
251
252
253
254
255
256
# File 'lib/rexml/doctype.rb', line 250

def to_s
  notation = "<!NOTATION #{@name} #{@middle}"
  notation << " #{@public.inspect}" if @public
  notation << " #{@system.inspect}" if @system
  notation << ">"
  notation
end

#write(output, indent = -1 )) ⇒ Object



258
259
260
# File 'lib/rexml/doctype.rb', line 258

def write( output, indent=-1 )
  output << to_s
end