class Nokogiri::XML::EntityDecl

def self.new name, doc, *args

def self.new name, doc, *args
  doc.create_entity(name, *args)
end

def content

def content
  cstruct[:content]
end

def entity_type

def entity_type
  cstruct[:etype]
end

def external_id

def external_id
  cstruct[:external_id]
end

def inspect

def inspect
  "#<#{self.class.name}:#{sprintf("0x%x", object_id)} #{to_s.inspect}>"
end

def original_content

def original_content
  cstruct[:orig]
end

def system_id

def system_id
  cstruct[:system_id]
end