// Create Strings instance and add it to the InitMapHolder.
strings = new Strings();
initMapHolder.setEntry(this, InitMapHolder.STRINGS, strings);
// Create DateUtils instance and add it to the InitMapHolder.
DateUtils dateUtils = new DateUtils(strings);
initMapHolder.setEntry(this, InitMapHolder.DATE_UTILS, dateUtils);
// Create and initialize the Class which will write the data to the destination
// locations.
destWriter = new DestinationWriter();
if (!destWriter.init(imh, super.aProcessorNode, new DateUtils())){
return false;
}
// Create Nitf instance and add it to the InitMapHolder.
Nitf nitf = new Nitf(initMapHolder);