Added public method Case.getImages.

This commit is contained in:
Tim McIver 2012-12-04 16:52:21 -05:00
parent 996d98af9e
commit d286ad8614

View File

@ -27,6 +27,7 @@ import java.io.FileInputStream;
import java.io.IOException; import java.io.IOException;
import java.text.DateFormat; import java.text.DateFormat;
import java.text.SimpleDateFormat; import java.text.SimpleDateFormat;
import java.util.Collection;
import java.util.GregorianCalendar; import java.util.GregorianCalendar;
import java.util.HashMap; import java.util.HashMap;
import java.util.HashSet; import java.util.HashSet;
@ -573,6 +574,10 @@ public class Case {
return ids.toArray(new Long[ids.size()]); return ids.toArray(new Long[ids.size()]);
} }
public List<Image> getImages() throws TskCoreException {
return db.getImages();
}
/** /**
* Count the root objects. * Count the root objects.
* @return The number of total root objects in this case. * @return The number of total root objects in this case.