class Libis::Tools::MetsFile::DnxSection

Base class for a DNX section in the METS file. Each {DnxSection} derived class has a unique tag which will become the id of the <section> element.

Public Instance Methods

tag() click to toggle source

Instance method to access the class tag for DNX.

# File lib/libis/tools/mets_dnx.rb, line 10
def tag
  _tag = self.class.name.split('::').last
  _tag[0] = _tag[0].downcase
  _tag
end