class REXML::NotationDecl

def to_s

def to_s
  context = nil
  context = parent.context if parent
  notation = "<!NOTATION #{@name}"
  reference_writer = ReferenceWriter.new(@middle, @public, @system, context)
  reference_writer.write(notation)
  notation << ">"
  notation
end