Clover Coverage Report - jmxmonitor 1.0.2
Coverage timestamp: Wed Feb 10 2010 07:36:51 GMT
../../../../../img/srcFileCovDistChart10.png 0% of files have more coverage
3   36   1   3
0   12   0.33   1
1     1  
1    
 
  JmxMonitorModule       Line # 26 3 0% 1 0 100% 1.0
 
  (2)
 
1    /*
2    * Copyright 2009 Ben Gidley
3    *
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.apache.org/licenses/LICENSE-2.0
9    *
10    * Unless required by applicable law or agreed to in writing, software
11    * distributed under the License is distributed on an "AS IS" BASIS,
12    * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13    * See the License for the specific language governing permissions and
14    * limitations under the License.
15    */
16   
17    package uk.co.gidley.jmxmonitor.services;
18   
19    import org.apache.tapestry5.ioc.ServiceBinder;
20    import org.slf4j.Logger;
21    import org.slf4j.LoggerFactory;
22   
23    /**
24    * Created by IntelliJ IDEA. User: ben Date: Dec 22, 2009 Time: 9:30:24 PM
25    */
 
26    public class JmxMonitorModule {
27    private static final Logger logger = LoggerFactory.getLogger(JmxMonitorModule.class);
28   
 
29  4 toggle public static void bind(ServiceBinder binder) {
30  4 binder.bind(ThreadManager.class);
31  4 binder.bind(MainConfiguration.class);
32  4 binder.bind(InternalJmx.class);
33    }
34   
35   
36    }