Coverage Report - org.jtheque.primary.od.able.PrimaryData
 
Classes in this File Line Coverage Branch Coverage Complexity
PrimaryData
N/A
N/A
1
 
 1  
 package org.jtheque.primary.od.able;
 2  
 
 3  
 /**
 4  
  * A primary data. It seems a data specific to a primary implementation.
 5  
  *
 6  
  * @author Baptiste Wicht
 7  
  */
 8  
 public interface PrimaryData extends Data {
 9  
         /**
 10  
          * Return the primary implementation of this data.
 11  
          *
 12  
          * @return The primary implementation of this data.
 13  
          */
 14  
         String getPrimaryImpl();
 15  
 
 16  
         /**
 17  
          * Set the primary implementation of the data.
 18  
          *
 19  
          * @param impl The primary impl of the data.
 20  
          */
 21  
         void setPrimaryImpl(String impl);
 22  
 }