Coverage Report - fr.paris.lutece.plugins.releaser.util.github.GithubSearchResult
 
Classes in this File Line Coverage Branch Coverage Complexity
GithubSearchResult
0 %
0/7
N/A
1
 
 1  
 package fr.paris.lutece.plugins.releaser.util.github;
 2  
 
 3  
 import java.util.List;
 4  
 
 5  
 import org.codehaus.jackson.annotate.JsonProperty;
 6  
 
 7  0
 public class GithubSearchResult
 8  
 {
 9  
 
 10  
     private Integer _bTotalCount;
 11  
     
 12  
     private List<GithubSearchRepoItem> _listRepoItem;
 13  
     
 14  
     
 15  
     @JsonProperty("items")
 16  
     public List<GithubSearchRepoItem> getListRepoItem( )
 17  
     {
 18  0
         return _listRepoItem;
 19  
     }
 20  
     @JsonProperty("items")
 21  
     public void setListRepoItem( List<GithubSearchRepoItem> listRepoItem )
 22  
     {
 23  0
         this._listRepoItem = listRepoItem;
 24  0
     }
 25  
     @JsonProperty("total_count")
 26  
     public Integer getTotalCount( )
 27  
     {
 28  0
         return _bTotalCount;
 29  
     }
 30  
     @JsonProperty("total_count")
 31  
     public void setTotalCount( Integer bTotalCount )
 32  
     {
 33  0
         this._bTotalCount = bTotalCount;
 34  0
     } 
 35  
     
 36  
     
 37  
 }