Class: Libis::Tools::MetsFile::DnxSection
- Inherits:
-
OpenStruct
- Object
- OpenStruct
- Libis::Tools::MetsFile::DnxSection
show all
- Defined in:
- lib/libis/tools/mets_file.rb
Class Method Summary
collapse
Instance Method Summary
collapse
Class Method Details
.tag(value = nil) ⇒ Object
179
180
181
182
183
184
185
186
|
# File 'lib/libis/tools/mets_file.rb', line 179
def self.tag(value = nil)
var_name = '@tag'
if value.nil?
instance_variable_get(var_name)
else
instance_variable_set(var_name, value)
end
end
|
Instance Method Details
188
189
190
|
# File 'lib/libis/tools/mets_file.rb', line 188
def tag
self.class.tag
end
|