X-Git-Url: http://www2.svjatoslav.eu/gitweb/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Feu%2Fsvjatoslav%2Finspector%2Fjava%2Fstructure%2FUtils.java;h=de74c1341fbd825049cc2269fa1f6ec969621b39;hb=ffba53aac03e4d107545116ddcfff0c965bd5970;hp=b112e2de05b3759c422a6807c800b07e4a1dfcb2;hpb=300fb5791f0b79e43cfd2cd589c3ee7f35ac0c1c;p=javainspect.git diff --git a/src/main/java/eu/svjatoslav/inspector/java/structure/Utils.java b/src/main/java/eu/svjatoslav/inspector/java/structure/Utils.java index b112e2d..de74c13 100755 --- a/src/main/java/eu/svjatoslav/inspector/java/structure/Utils.java +++ b/src/main/java/eu/svjatoslav/inspector/java/structure/Utils.java @@ -1,7 +1,7 @@ /* * JavaInspect - Utility to visualize java software * Copyright (C) 2013-2015, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu - * + * * This program is free software; you can redistribute it and/or * modify it under the terms of version 3 of the GNU Lesser General Public License * or later as published by the Free Software Foundation. @@ -14,35 +14,10 @@ import java.util.List; public class Utils { - private static final List systemDataTypes = new ArrayList(); - - private static final List commonObjectMethods = new ArrayList(); - - private static final List systemPackages = new ArrayList(); - - private static final List darkColors = new ArrayList(); - - private static final List lightColors = new ArrayList(); - - private static final List enumMethods = new ArrayList(); - - public static int lastChosenDarkColor = -1; - - public static int lastChosenLightColor = -1; - - static { - initEnumMethods(); - initSystemDataTypes(); - initDarkColors(); - initLightColors(); - initCommonObjectMethods(); - initSystemPackages(); - } - /** * retrieves colors from predefined palette */ - public static String getNextDarkColor() { + protected static String getNextDarkColor() { lastChosenDarkColor++; if (lastChosenDarkColor >= darkColors.size()) lastChosenDarkColor = 0; @@ -53,7 +28,7 @@ public class Utils { /** * retrieves colors from predefined palette */ - public static String getNextLightColor() { + protected static String getNextLightColor() { lastChosenLightColor++; if (lastChosenLightColor >= lightColors.size()) lastChosenLightColor = 0; @@ -61,7 +36,7 @@ public class Utils { return lightColors.get(lastChosenLightColor); } - public static void initCommonObjectMethods() { + private static void initCommonObjectMethods() { commonObjectMethods.add("wait"); commonObjectMethods.add("equals"); commonObjectMethods.add("toString"); @@ -71,7 +46,7 @@ public class Utils { commonObjectMethods.add("getClass"); } - public static void initDarkColors() { + protected static void initDarkColors() { darkColors.add("antiquewhite4"); darkColors.add("blueviolet"); darkColors.add("brown4"); @@ -84,7 +59,7 @@ public class Utils { darkColors.add("gray0"); } - public static void initEnumMethods() { + private static void initEnumMethods() { enumMethods.add("values"); enumMethods.add("valueOf"); enumMethods.add("name"); @@ -94,7 +69,7 @@ public class Utils { enumMethods.add("ordinal"); } - public static void initLightColors() { + private static void initLightColors() { lightColors.add("olivedrab2"); lightColors.add("peachpuff2"); lightColors.add("seagreen1"); @@ -103,7 +78,7 @@ public class Utils { lightColors.add("orange"); } - public static void initSystemDataTypes() { + private static void initSystemDataTypes() { systemDataTypes.add("void"); systemDataTypes.add("int"); systemDataTypes.add("long"); @@ -115,25 +90,25 @@ public class Utils { systemDataTypes.add("byte"); } - public static void initSystemPackages() { + private static void initSystemPackages() { systemPackages.add("java."); systemPackages.add("javax."); systemPackages.add("sun."); } - public static boolean isCommonObjectMethod(final String name) { + protected static boolean isCommonObjectMethod(final String name) { return commonObjectMethods.contains(name); } - public static boolean isEnumMethod(final String name) { + protected static boolean isEnumMethod(final String name) { return enumMethods.contains(name); } - public static boolean isSystemDataType(final String name) { + protected static boolean isSystemDataType(final String name) { return systemDataTypes.contains(name); } - public static boolean isSystemPackage(final String name) { + protected static boolean isSystemPackage(final String name) { for (final String packagePrefix : systemPackages) if (name.startsWith(packagePrefix)) @@ -142,4 +117,29 @@ public class Utils { return false; } + private static final List systemDataTypes = new ArrayList(); + + private static final List commonObjectMethods = new ArrayList(); + + private static final List systemPackages = new ArrayList(); + + private static final List darkColors = new ArrayList(); + + private static final List lightColors = new ArrayList(); + + private static final List enumMethods = new ArrayList(); + + private static int lastChosenDarkColor = -1; + + private static int lastChosenLightColor = -1; + + static { + initEnumMethods(); + initSystemDataTypes(); + initDarkColors(); + initLightColors(); + initCommonObjectMethods(); + initSystemPackages(); + } + }