Example #1
0
 public MetsMetadataWrapper(string id, string mimetype, string label, MetsMetadataType mdtype, string othermdtype)
 {
     this.id          = id;
     this.mimetype    = mimetype;
     this.label       = label;
     this.mdtype      = mdtype.ToString().ToUpper();
     this.othermdtype = othermdtype;
 }
Example #2
0
 public MetsMetadataWrapper(string id, string mimetype, string label, MetsMetadataType mdtype, string othermdtype) {
     this.id = id;
     this.mimetype = mimetype;
     this.label = label;
     this.mdtype = mdtype.ToString().ToUpper();
     this.othermdtype = othermdtype;
 }
Example #3
0
 public MetsMetadataReference(string reference, string id, string mimetype, string label, string xptr, MetsLocatorType loctype, string otherloctype, MetsMetadataType mdtype, string othermdtype) {
     this.id = id;
     this.mimetype = mimetype;
     this.label = label;
     this.xptr = xptr;
     this.loctype = loctype.ToString().ToUpper();
     this.otherloctype = otherloctype;
     this.mdtype = mdtype.ToString().ToUpper();
     this.othermdtype = othermdtype;
     this.reference = reference;
 }
Example #4
0
 public MetsMetadataReference(string reference, string id, string mimetype, string label, string xptr, MetsLocatorType loctype, string otherloctype, MetsMetadataType mdtype, string othermdtype)
 {
     this.id           = id;
     this.mimetype     = mimetype;
     this.label        = label;
     this.xptr         = xptr;
     this.loctype      = loctype.ToString().ToUpper();
     this.otherloctype = otherloctype;
     this.mdtype       = mdtype.ToString().ToUpper();
     this.othermdtype  = othermdtype;
     this.reference    = reference;
 }