mirror of
https://github.com/hneemann/Digital.git
synced 2025-09-14 15:26:52 -04:00
disabled some checkstyle warnings
This commit is contained in:
parent
26770785f8
commit
62d7cf6771
@ -11,6 +11,7 @@ import de.neemann.digital.lang.Lang;
|
||||
*/
|
||||
public class AttributeKey<VALUE> {
|
||||
|
||||
//CHECKSTYLE:OFF: checkstyle:naming
|
||||
public static final AttributeKey<Integer> Bits = new AttributeKey<>("Bits", Lang.get("key_dataBits"), 1);
|
||||
public static final AttributeKey<Integer> InputCount = new AttributeKey<>("Inputs", Lang.get("key_numberInputs"), 2);
|
||||
public static final AttributeKey<String> Label = new AttributeKey<>("Label", Lang.get("key_label"), "");
|
||||
@ -37,6 +38,7 @@ public class AttributeKey<VALUE> {
|
||||
public static final AttributeKey<Boolean> ShowDataGraph = new AttributeKey<>("showDataGraph", Lang.get("key_showDataGraph"), false);
|
||||
public static final AttributeKey<Boolean> StartTimer = new AttributeKey<>("startTimer", Lang.get("key_startClock"), false);
|
||||
public static final AttributeKey<Boolean> MicroStep = new AttributeKey<>("microStep", Lang.get("key_microStep"), false);
|
||||
//CHECKSTYLE:ON: checkstyle:naming
|
||||
|
||||
private final String key;
|
||||
private final VALUE def;
|
||||
|
Loading…
x
Reference in New Issue
Block a user