Class REXML::NotationDecl
In:
Parent: Child

Methods

new   to_s   write  

Public Class methods

[Source]

198:                 def initialize name, middle, rest
199:                         @name = name
200:                         @middle = middle
201:                         @rest = rest
202:                 end

Public Instance methods

[Source]

204:                 def to_s
205:                         "<!NOTATION #@name '#@middle #@rest'>"
206:                 end

[Source]

208:                 def write( output, indent=-1 )
209:                         output << ('   '*indent) if indent > 0
210:                         output << to_s
211:                 end

Search

Google

Ruby API Docs

Links