disabled some checkstyle warnings

This commit is contained in:
hneemann 2016-04-10 11:17:59 +02:00
parent 26770785f8
commit 62d7cf6771

View File

@ -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;