Skip to content
Snippets Groups Projects
Commit 01a53062 authored by Piotr Gawron's avatar Piotr Gawron
Browse files

old code removed

parent f4e3dc56
No related branches found
No related tags found
1 merge request!768Resolve "Custom images as overlay levels or background"
package lcsb.mapviewer.converter.graphics;
import static org.junit.Assert.assertFalse;
import java.awt.Color;
import java.awt.Graphics2D;
import java.awt.geom.Point2D;
import java.awt.geom.Rectangle2D;
......@@ -12,10 +9,8 @@ import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import lcsb.mapviewer.commands.ColorExtractor;
import lcsb.mapviewer.commands.CreateHierarchyCommand;
import lcsb.mapviewer.converter.graphics.AbstractImageGenerator.Params;
import lcsb.mapviewer.converter.graphics.bioEntity.element.species.ComplexConverter;
import lcsb.mapviewer.model.graphics.PolylineData;
import lcsb.mapviewer.model.map.layout.graphics.Layer;
import lcsb.mapviewer.model.map.layout.graphics.LayerText;
......@@ -34,26 +29,6 @@ public class NormalImageGeneratorTest {
public void tearDown() throws Exception {
}
Double scale;
private Boolean artifitialCalled;
public void setScale(Double sc) {
scale = sc;
}
class TmpComplexConverter extends ComplexConverter {
public TmpComplexConverter(ColorExtractor colorExtractor) {
super(colorExtractor);
}
@Override
public void drawText(Complex compAlias, Graphics2D graphics, ConverterParams params) {
setScale(params.getScale());
super.drawText(compAlias, graphics, params);
}
}
private Model createCompartmentModel() {
Model model = new ModelFullIndexed(null);
model.setWidth(526);
......@@ -84,43 +59,6 @@ public class NormalImageGeneratorTest {
return model;
}
@Test
public void testArtifitialInNonHierarchicalView() throws Exception {
scale = null;
try {
// TODO fix it
// AliasConverter.addAliasConverter(PathwayCompartment.class, new
// TmpArtifitialConverter());
setArtifitialCalled(false);
Model model = createCompartmentModel();
new CreateHierarchyCommand(model, 2, 2).execute();
new PngImageGenerator(new Params().scale(2).width(600).height(600).model(model));
assertFalse(getArtifitialCalled());
} catch (Exception e) {
e.printStackTrace();
throw e;
}
}
/**
* @return the artifitialCalled
* @see #artifitialCalled
*/
public Boolean getArtifitialCalled() {
return artifitialCalled;
}
/**
* @param artifitialCalled
* the artifitialCalled to set
* @see #artifitialCalled
*/
public void setArtifitialCalled(Boolean artifitialCalled) {
this.artifitialCalled = artifitialCalled;
}
@Test
public void testArtifitialInHierarchicalView() throws Exception {
......
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