Coverage Report - org.jscsi.target.scsi.sense.information.FourByteInformation
 
Classes in this File Line Coverage Branch Coverage Complexity
FourByteInformation
0%
0/3
N/A
1
 
 1  
 package org.jscsi.target.scsi.sense.information;
 2  
 
 3  
 
 4  
 import java.nio.ByteBuffer;
 5  
 
 6  
 
 7  
 /**
 8  
  * {@link Information} with a field length of 4 bytes.
 9  
  * 
 10  
  * @author Andreas Ergenzinger
 11  
  */
 12  0
 public class FourByteInformation extends Information {
 13  
 
 14  
     private static final int SIZE = 4;
 15  
 
 16  
     public void serialize (ByteBuffer byteBuffer, int index) {
 17  
         // do nothing
 18  0
     }
 19  
 
 20  
     public int size () {
 21  0
         return SIZE;
 22  
     }
 23  
 }