W3cubDocs

/Nokogiri

class Nokogiri::XML::EntityDecl

Parent:
Nokogiri::XML::Node

Public Class Methods

new(name, doc, *args) Show source
# File lib/nokogiri/xml/entity_decl.rb, line 10
def self.new name, doc, *args
  doc.create_entity(name, *args)
end

Public Instance Methods

content Show source

Get the content

static VALUE get_content(VALUE self)
{
  xmlEntityPtr node;
  Data_Get_Struct(self, xmlEntity, node);

  if(!node->content) return Qnil;

  return NOKOGIRI_STR_NEW(node->content, node->length);
}
entity_type Show source

Get the entity type

static VALUE entity_type(VALUE self)
{
  xmlEntityPtr node;
  Data_Get_Struct(self, xmlEntity, node);

  return INT2NUM((int)node->etype);
}
external_id Show source

Get the external identifier for PUBLIC

static VALUE external_id(VALUE self)
{
  xmlEntityPtr node;
  Data_Get_Struct(self, xmlEntity, node);

  if(!node->ExternalID) return Qnil;

  return NOKOGIRI_STR_NEW2(node->ExternalID);
}
inspect() Show source
# File lib/nokogiri/xml/entity_decl.rb, line 14
def inspect
  "#<#{self.class.name}:#{sprintf("0x%x", object_id)} #{to_s.inspect}>"
end
original_content Show source

Get the #original_content before ref substitution

static VALUE original_content(VALUE self)
{
  xmlEntityPtr node;
  Data_Get_Struct(self, xmlEntity, node);

  if(!node->orig) return Qnil;

  return NOKOGIRI_STR_NEW2(node->orig);
}
system_id Show source

Get the URI for a SYSTEM or PUBLIC Entity

static VALUE system_id(VALUE self)
{
  xmlEntityPtr node;
  Data_Get_Struct(self, xmlEntity, node);

  if(!node->SystemID) return Qnil;

  return NOKOGIRI_STR_NEW2(node->SystemID);
}

© 2008–2017 Aaron Patterson, Mike Dalessio, Charles Nutter, Sergio Arbeo
Patrick Mahoney, Yoko Harada, Akinori Musha, John Shahid
Licensed under the MIT License.