Coverage Report - org.homeunix.thecave.buddi.plugin.api.model.impl.ImmutableSplitImpl
 
Classes in this File Line Coverage Branch Coverage Complexity
ImmutableSplitImpl
0%
0/2
N/A
1
 
 1  
 /*
 2  
  * Created on Aug 12, 2007 by wyatt
 3  
  */
 4  
 package org.homeunix.thecave.buddi.plugin.api.model.impl;
 5  
 
 6  
 import org.homeunix.thecave.buddi.model.Split;
 7  
 import org.homeunix.thecave.buddi.plugin.api.model.ImmutableSplit;
 8  
 
 9  
 public class ImmutableSplitImpl extends ImmutableSourceImpl implements ImmutableSplit {
 10  
         
 11  
         public ImmutableSplitImpl(Split split) {
 12  0
                 super(split);
 13  0
         }
 14  
 }