Coverage Report - org.mule.tck.testmodels.services.Address
 
Classes in this File Line Coverage Branch Coverage Complexity
Address
0%
0/12
N/A
1
 
 1  
 /*
 2  
  * Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
 3  
  * The software in this package is published under the terms of the CPAL v1.0
 4  
  * license, a copy of which has been included with this distribution in the
 5  
  * LICENSE.txt file.
 6  
  */
 7  
 package org.mule.tck.testmodels.services;
 8  
 
 9  
 /**
 10  
  * <code>Address</code> is a Persons address
 11  
  */
 12  
 
 13  
 public class Address
 14  
 {
 15  
     private String address;
 16  
     private String postcode;
 17  
 
 18  
     public Address()
 19  
     {
 20  0
         super();
 21  0
     }
 22  
 
 23  
     public Address(String address, String postcode)
 24  0
     {
 25  0
         this.address = address;
 26  0
         this.postcode = postcode;
 27  0
     }
 28  
 
 29  
     public String getAddress()
 30  
     {
 31  0
         return address;
 32  
     }
 33  
 
 34  
     public void setAddress(String address)
 35  
     {
 36  0
         this.address = address;
 37  0
     }
 38  
 
 39  
     public String getPostcode()
 40  
     {
 41  0
         return postcode;
 42  
     }
 43  
 
 44  
     public void setPostcode(String postcode)
 45  
     {
 46  0
         this.postcode = postcode;
 47  0
     }
 48  
 
 49  
 }