Coverage Report - org.kuali.rice.core.api.mo.ModelObjectBasic
 
Classes in this File Line Coverage Branch Coverage Complexity
ModelObjectBasic
N/A
N/A
1
 
 1  
 package org.kuali.rice.core.api.mo;
 2  
 
 3  
 import java.io.Serializable;
 4  
 
 5  
 /**
 6  
  * All model objects in rice should be {@link Serializable} & override {@link #toString()}.
 7  
  */
 8  
 public interface ModelObjectBasic extends Serializable {
 9  
 
 10  
     /**
 11  
      * This will return a proper string representation of the Model Object.
 12  
      * All of the fields comprising the "public" api should be represented in
 13  
      * the return value.
 14  
      *
 15  
      * @return the string representation
 16  
      */
 17  
     @Override
 18  
     String toString();
 19  
 }