< prev index next >

application/uitests/org.openjdk.jmc.test.jemmy/src/test/java/org/openjdk/jmc/test/jemmy/misc/wrappers/JfrUi.java

Print this page

        

@@ -54,10 +54,11 @@
         /*
          * Members ======= List of tabs
          */
         public static enum Tabs {
                 JAVA_APPLICATION,
+                THREADS,
                 MEMORY,
                 LOCK_INSTANCES,
                 FILE_IO,
                 SOCKET_IO,
                 METHOD_PROFILING,

@@ -96,10 +97,13 @@
                                 tabText = new String[] {"JVM Internals", "GC Configuration"};
                                 break;
                         case ALLOCATIONS:
                                 tabText = new String[] {"JVM Internals", "TLAB Allocations"};
                                 break;
+                        case THREADS:
+                                tabText = new String[] {"Java Application", "Threads"};
+                                break;
                         case MEMORY:
                                 tabText = new String[] {"Java Application", "Memory"};
                                 break;
                         case METHOD_PROFILING:
                                 tabText = new String[] {"Java Application", "Method Profiling"};
< prev index next >