|
|
@@ -9,6 +9,8 @@ class DublinCore { |
|
|
final String publisher; |
|
|
final String publisher; |
|
|
final String contributor; |
|
|
final String contributor; |
|
|
final String date; |
|
|
final String date; |
|
|
|
|
|
final String created; |
|
|
|
|
|
final String modified; |
|
|
final String type; |
|
|
final String type; |
|
|
final String format; |
|
|
final String format; |
|
|
final String identifier; |
|
|
final String identifier; |
|
|
@@ -26,6 +28,8 @@ class DublinCore { |
|
|
this.publisher, |
|
|
this.publisher, |
|
|
this.contributor, |
|
|
this.contributor, |
|
|
this.date, |
|
|
this.date, |
|
|
|
|
|
this.created, |
|
|
|
|
|
this.modified, |
|
|
this.type, |
|
|
this.type, |
|
|
this.format, |
|
|
this.format, |
|
|
this.identifier, |
|
|
this.identifier, |
|
|
@@ -48,6 +52,8 @@ class DublinCore { |
|
|
publisher: findElementOrNull(element, "dc:publisher")?.text, |
|
|
publisher: findElementOrNull(element, "dc:publisher")?.text, |
|
|
contributor: findElementOrNull(element, "dc:contributor")?.text, |
|
|
contributor: findElementOrNull(element, "dc:contributor")?.text, |
|
|
date: findElementOrNull(element, "dc:date")?.text, |
|
|
date: findElementOrNull(element, "dc:date")?.text, |
|
|
|
|
|
created: findElementOrNull(element, "dc:created")?.text, |
|
|
|
|
|
modified: findElementOrNull(element, "dc:modified")?.text, |
|
|
type: findElementOrNull(element, "dc:type")?.text, |
|
|
type: findElementOrNull(element, "dc:type")?.text, |
|
|
format: findElementOrNull(element, "dc:format")?.text, |
|
|
format: findElementOrNull(element, "dc:format")?.text, |
|
|
identifier: findElementOrNull(element, "dc:identifier")?.text, |
|
|
identifier: findElementOrNull(element, "dc:identifier")?.text, |
|
|
|