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

implement toString method

parent 63744a77
No related branches found
No related tags found
1 merge request!897Resolve "boolean reaction colouring not working"
package lcsb.mapviewer.converter.model.celldesigner.structure.fields;
import java.awt.*;
import java.awt.Color;
import lcsb.mapviewer.common.geometry.ColorParser;
import lcsb.mapviewer.model.graphics.PolylineData;
/**
......@@ -99,4 +100,9 @@ public class LineProperties {
this.type = type;
}
@Override
public String toString() {
return "[" + this.getClass().getSimpleName() + " w=" + width + "; c=" + new ColorParser().colorToHtml(color) + "]";
}
}
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