Package com.pixelmed.apps
Class TranslateImagePositionPatient.OurMediaImporter
java.lang.Object
com.pixelmed.dicom.MediaImporter
com.pixelmed.apps.TranslateImagePositionPatient.OurMediaImporter
- Enclosing class:
TranslateImagePositionPatient
-
Nested Class Summary
Nested classes/interfaces inherited from class com.pixelmed.dicom.MediaImporter
MediaImporter.MediaImporterWithFileChooserDialogThread, MediaImporter.OurReadTerminationStrategy
-
Field Summary
Fields inherited from class com.pixelmed.dicom.MediaImporter
logger, mediaDirectoryPath, progressBar, progressBarUpdater, terminateAfterIdentifyingGroup
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected void
doSomethingWithDicomFileOnMedia
(String mediaFileName) Do something with the referenced DICOM file that has been encountered.Methods inherited from class com.pixelmed.dicom.MediaImporter
choosePathAndImportDicomFiles, choosePathAndImportDicomFiles, doSomethingWithDicomFileOnMedia, doSomethingWithUnwantedFileOnMedia, getDirectory, importDicomFiles, isOKToImport, logLn, main
-
Constructor Details
-
OurMediaImporter
public OurMediaImporter()
-
-
Method Details
-
doSomethingWithDicomFileOnMedia
Description copied from class:MediaImporter
Do something with the referenced DICOM file that has been encountered.
This method needs to be implemented in a sub-class to do anything useful, unless
doSomethingWithDicomFileOnMedia(String mediaFileName,String transferSyntaxUID,String sopClassUID)
has been overridden instead. The default method does nothing."Wanted" files are those that are DICOM files for which
isOKToImport(String sopClassUID,String transferSyntaxUID)
returns true.This method does not define any exceptions and hence must handle any errors locally.
- Overrides:
doSomethingWithDicomFileOnMedia
in classMediaImporter
- Parameters:
mediaFileName
- the fully qualified path name to a DICOM file
-