Skip to content
Snippets Groups Projects
Commit 43955d8d authored by tpylak's avatar tpylak
Browse files

LMS-1915 minor: name refactoring

SVN: 19082
parent c931a75b
No related branches found
No related tags found
No related merge requests found
......@@ -33,16 +33,16 @@ import com.extjs.gxt.ui.client.widget.layout.TableLayout;
import ch.systemsx.cisd.openbis.plugin.screening.shared.basic.dto.ImageChannelStack;
/**
* Allows to view timepoint images of the well.
* Allows to view logical image which has series (e.g. timepoints).
*
* @author Tomasz Pylak
*/
class WellContentTimepointsViewer
class LogicalImageSeriesViewer
{
public static LayoutContainer createTilesGrid(String sessionId,
List<ImageChannelStack> channelStackImages, LogicalImageReference images, String channel,
int imageWidth, int imageHeight)
public static LayoutContainer create(String sessionId,
List<ImageChannelStack> channelStackImages, LogicalImageReference images,
String channel, int imageWidth, int imageHeight)
{
Map<Float, List<ImageChannelStack>> channelStackImagesByTimepoint =
groupImagesByTimepoint(channelStackImages);
......@@ -86,12 +86,12 @@ class WellContentTimepointsViewer
private static List<LayoutContainer> createTimepointFrames(
Map<Float, List<ImageChannelStack>> channelStackImagesByTimepoint,
LogicalImageReference images, String channel, String sessionId, int imageWidth, int imageHeight)
LogicalImageReference images, String channel, String sessionId, int imageWidth,
int imageHeight)
{
final List<LayoutContainer> frames = new ArrayList<LayoutContainer>();
int counter = 0;
for (Entry<Float, List<ImageChannelStack>> entry : channelStackImagesByTimepoint
.entrySet())
for (Entry<Float, List<ImageChannelStack>> entry : channelStackImagesByTimepoint.entrySet())
{
List<ImageChannelStack> imageReferences = entry.getValue();
final LayoutContainer container =
......@@ -116,8 +116,8 @@ class WellContentTimepointsViewer
}
private static LayoutContainer createTilesGridForTimepoint(
List<ImageChannelStack> channelStackReferences, LogicalImageReference images, String channel,
String sessionId, int imageWidth, int imageHeight)
List<ImageChannelStack> channelStackReferences, LogicalImageReference images,
String channel, String sessionId, int imageWidth, int imageHeight)
{
final LayoutContainer container =
new LayoutContainer(new TableLayout(images.getTileColsNum()));
......@@ -142,8 +142,8 @@ class WellContentTimepointsViewer
return container;
}
private static ImageChannelStack[][] createTilesMap(
List<ImageChannelStack> stackReferences, LogicalImageReference images)
private static ImageChannelStack[][] createTilesMap(List<ImageChannelStack> stackReferences,
LogicalImageReference images)
{
int rows = images.getTileRowsNum();
int cols = images.getTileColsNum();
......@@ -173,8 +173,7 @@ class WellContentTimepointsViewer
private static Map<Float, List<ImageChannelStack>> groupImagesByTimepoint(
List<ImageChannelStack> channelStackImages)
{
Map<Float, List<ImageChannelStack>> result =
new TreeMap<Float, List<ImageChannelStack>>();
Map<Float, List<ImageChannelStack>> result = new TreeMap<Float, List<ImageChannelStack>>();
for (ImageChannelStack ref : channelStackImages)
{
Float t = ref.tryGetTimepoint();
......
......@@ -76,7 +76,7 @@ public class LogicalImageViewer
String sessionId = getSessionId(viewContext);
int imageWidth = getImageWidth(logicalImageReference);
int imageHeight = getImageHeight(logicalImageReference);
return WellContentTimepointsViewer.createTilesGrid(sessionId,
return LogicalImageSeriesViewer.create(sessionId,
channelStackImages, logicalImageReference, channel, imageWidth,
imageHeight);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment