Transférer les fichiers vers 'src/JsonInspector'
This commit is contained in:
parent
700a9511b4
commit
5d7d48d368
@ -12,6 +12,7 @@ public class Parameters {
|
|||||||
public static final Color OTHER_COLOR = new Color(7, 103, 183);
|
public static final Color OTHER_COLOR = new Color(7, 103, 183);
|
||||||
public static final Color STRING_COLOR = new Color(203, 109, 80);
|
public static final Color STRING_COLOR = new Color(203, 109, 80);
|
||||||
public static final Color NUMBER_COLOR = new Color(133, 192, 95);
|
public static final Color NUMBER_COLOR = new Color(133, 192, 95);
|
||||||
|
public static final Color MOUSE_OVER_COLOR = new Color(60, 60, 60);
|
||||||
public static final Color DEFAULT_TEXT_COLOR = new Color(220, 220, 220);
|
public static final Color DEFAULT_TEXT_COLOR = new Color(220, 220, 220);
|
||||||
public static final Color BACKGROUND_COLOR = new Color(45, 45, 45);
|
public static final Color BACKGROUND_COLOR = new Color(45, 45, 45);
|
||||||
}
|
}
|
||||||
|
@ -81,7 +81,7 @@ public class Tree {
|
|||||||
indentation += Parameters.CONSOLE_INDENTATION;
|
indentation += Parameters.CONSOLE_INDENTATION;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!node.getName().equals("")) {
|
if (node.getType() != Type.ELEMENT) {
|
||||||
line += indentation + "\"" + node.getName() + "\"";
|
line += indentation + "\"" + node.getName() + "\"";
|
||||||
} else {
|
} else {
|
||||||
line += indentation + node.getName();
|
line += indentation + node.getName();
|
||||||
|
Loading…
Reference in New Issue
Block a user