EMMA Coverage Report (generated Mon Oct 17 05:41:20 EDT 2011)
[all classes][org.jclouds.trmk.vcloud_0_8.compute.domain]

COVERAGE SUMMARY FOR SOURCE FILE [OrgAndName.java]

nameclass, %method, %block, %line, %
OrgAndName.java100% (1/1)67%  (4/6)43%  (50/117)53%  (16/30)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class OrgAndName100% (1/1)67%  (4/6)43%  (50/117)53%  (16/30)
hashCode (): int 0%   (0/1)0%   (0/32)0%   (0/5)
toString (): String 0%   (0/1)0%   (0/17)0%   (0/1)
equals (Object): boolean 100% (1/1)66%  (35/53)56%  (10/18)
OrgAndName (URI, String): void 100% (1/1)100% (9/9)100% (4/4)
getName (): String 100% (1/1)100% (3/3)100% (1/1)
getOrg (): URI 100% (1/1)100% (3/3)100% (1/1)

1/**
2 * Licensed to jclouds, Inc. (jclouds) under one or more
3 * contributor license agreements.  See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership.  jclouds licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License.  You may obtain a copy of the License at
9 *
10 *   http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied.  See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 */
19package org.jclouds.trmk.vcloud_0_8.compute.domain;
20 
21import java.net.URI;
22 
23/**
24 * 
25 * @author Adrian Cole
26 */
27public class OrgAndName {
28   protected final URI org;
29   protected final String name;
30 
31   public OrgAndName(URI org, String name) {
32      this.org = org;
33      this.name = name;
34   }
35 
36   @Override
37   public int hashCode() {
38      final int prime = 31;
39      int result = 1;
40      result = prime * result + ((org == null) ? 0 : org.hashCode());
41      result = prime * result + ((name == null) ? 0 : name.hashCode());
42      return result;
43   }
44 
45   @Override
46   public boolean equals(Object obj) {
47      if (this == obj)
48         return true;
49      if (obj == null)
50         return false;
51      if (getClass() != obj.getClass())
52         return false;
53      OrgAndName other = (OrgAndName) obj;
54      if (org == null) {
55         if (other.org != null)
56            return false;
57      } else if (!org.equals(other.org))
58         return false;
59      if (name == null) {
60         if (other.name != null)
61            return false;
62      } else if (!name.equals(other.name))
63         return false;
64      return true;
65   }
66 
67   public URI getOrg() {
68      return org;
69   }
70 
71   public String getName() {
72      return name;
73   }
74 
75   @Override
76   public String toString() {
77      return "OrgTag [org=" + org + ", name=" + name + "]";
78   }
79 
80}

[all classes][org.jclouds.trmk.vcloud_0_8.compute.domain]
EMMA 2.0.5312 (C) Vladimir Roubtsov