Coverage Report - net.admin4j.util.threaddumper.ThreadDumperV1_6
 
Classes in this File Line Coverage Branch Coverage Complexity
ThreadDumperV1_6
100%
3/3
N/A
1
 
 1  
 /*
 2  
  * This software is licensed under the Apache License, Version 2.0
 3  
  * (the "License") agreement; you may not use this file except in compliance with
 4  
  * the License.  You may obtain a copy of the License at
 5  
  * 
 6  
  *      http://www.apache.org/licenses/LICENSE-2.0
 7  
  * 
 8  
  * Unless required by applicable law or agreed to in writing, software
 9  
  * distributed under the License is distributed on an "AS IS" BASIS,
 10  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 11  
  * See the License for the specific language governing permissions and
 12  
  * limitations under the License.
 13  
  */
 14  
 package net.admin4j.util.threaddumper;
 15  
 
 16  
 import java.lang.management.ManagementFactory;
 17  
 import java.lang.management.ThreadInfo;
 18  
 import java.lang.management.ThreadMXBean;
 19  
 
 20  
 /**
 21  
  * Dumps all threads with all available Jdk 1.6 features for including locked 
 22  
  * monitors or synchronizers. 
 23  
  * @author D. Ashmore
 24  
  * @since 1.0
 25  
  */
 26  243
 public class ThreadDumperV1_6 implements ThreadDumper {
 27  
 
 28  
     public ThreadInfo[] dumpAllThreads() {
 29  240
         ThreadMXBean threadMXBean = ManagementFactory.getThreadMXBean();
 30  
         
 31  
         // If Monitor and Sychronizer info is supported by JVM, gather
 32  
         // the info.  These are 1.6 features and won't load under 1.5.
 33  240
         return threadMXBean.dumpAllThreads(
 34  
                 threadMXBean.isObjectMonitorUsageSupported(), 
 35  
                 threadMXBean.isSynchronizerUsageSupported());
 36  
     }
 37  
 
 38  
 }