class Nokogiri::XML::Node

def read_only?

Is this a read only node?
##
def read_only?
  # According to gdome2, these are read-only node types
  [NOTATION_NODE, ENTITY_NODE, ENTITY_DECL].include?(type)
end