added a comment

This commit is contained in:
hneemann 2018-11-01 10:21:08 +01:00
parent ad8b524d5f
commit 9d7cc23c47

View File

@ -10,6 +10,7 @@ import de.neemann.digital.core.Value;
import java.awt.*; import java.awt.*;
/** /**
* Defines the styles (color, line thickness, font size and style) which are used to draw the circuit.
*/ */
public final class Style { public final class Style {
/** /**
@ -19,7 +20,7 @@ public final class Style {
/** /**
* thickness of thin lines * thickness of thin lines
*/ */
public static final int LINETHIN = MAXLINETHICK / 2; private static final int LINETHIN = MAXLINETHICK / 2;
private static final int WIRETHICK = MAXLINETHICK; private static final int WIRETHICK = MAXLINETHICK;
private static final int LINETHICK = MAXLINETHICK; private static final int LINETHICK = MAXLINETHICK;