Coverage Report - com.neidetcher.petunia.service.Category
 
Classes in this File Line Coverage Branch Coverage Complexity
Category
N/A 
N/A 
1
 
 1  
 package com.neidetcher.petunia.service;
 2  
 
 3  
 public interface Category
 4  
 {
 5  
 
 6  
    public abstract Integer getId();
 7  
 
 8  
    public abstract void setId(Integer id);
 9  
 
 10  
    public abstract String getName();
 11  
 
 12  
    public abstract void setName(String name);
 13  
 
 14  
    public abstract String getDescription();
 15  
 
 16  
    public abstract void setDescription(String description);
 17  
 
 18  
    public abstract Integer getParentCategoryId();
 19  
 
 20  
    public abstract void setParentCategoryId(Integer parentCategoryId);
 21  
 
 22  
 }