EMMA Coverage Report (generated Tue Feb 12 22:23:49 ICT 2008)
[all classes][net.sourceforge.hiveutils.service.impl]

COVERAGE SUMMARY FOR SOURCE FILE [InjectObjectInformation.java]

nameclass, %method, %block, %line, %
InjectObjectInformation.java100% (1/1)100% (5/5)100% (27/27)100% (10/10)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class InjectObjectInformation100% (1/1)100% (5/5)100% (27/27)100% (10/10)
InjectObjectInformation (Module, Class, String, Location): void 100% (1/1)100% (15/15)100% (6/6)
getLocation (): Location 100% (1/1)100% (3/3)100% (1/1)
getModule (): Module 100% (1/1)100% (3/3)100% (1/1)
getObject (): String 100% (1/1)100% (3/3)100% (1/1)
getType (): Class 100% (1/1)100% (3/3)100% (1/1)

1//  Copyright 2004-2007 Jean-Francois Poilpret
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7//     http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14 
15package net.sourceforge.hiveutils.service.impl;
16 
17import org.apache.hivemind.Locatable;
18import org.apache.hivemind.Location;
19import org.apache.hivemind.internal.Module;
20 
21/**
22 * Bean used to store location and module information about a translated
23 * "deferred-object".
24 * @author Jean-Francois Poilpret
25 */
26public class InjectObjectInformation implements Locatable
27{
28        public InjectObjectInformation(Module module, Class type, String object, Location location)
29        {
30                _module = module;
31                _type = type;
32                _object = object;
33                _location = location;
34        }
35 
36        public Module        getModule()
37        {
38                return _module;
39        }
40 
41        public Class        getType()
42        {
43                return _type;
44        }
45 
46        public String        getObject()
47        {
48                return _object;
49        }
50 
51        public Location        getLocation()
52        {
53                return _location;
54        }
55 
56        final private Module        _module;
57        final private Class                _type;
58        final private String        _object;
59        final private Location        _location;
60}

[all classes][net.sourceforge.hiveutils.service.impl]
EMMA 2.0.5312 (C) Vladimir Roubtsov