Coverage Report - com.buckosoft.PicMan.db.Server_SyncDaoJdbc
 
Classes in this File Line Coverage Branch Coverage Complexity
Server_SyncDaoJdbc
0%
0/3
N/A
1
 
 1  
 /******************************************************************************
 2  
  * Server_SyncDaoJdbc.java - Implement the Dao interface for the Server's sync table.
 3  
  * 
 4  
  * PicMan - The BuckoSoft Picture Manager in Java
 5  
  * Copyright(c) 2008 - Dick Balaska
 6  
  * 
 7  
  */
 8  
 package com.buckosoft.PicMan.db;
 9  
 
 10  
 import java.util.Date;
 11  
 
 12  
 /** Dao interface for the Server's sync table.
 13  
  * @author Dick Balaska
 14  
  * @since 2008/12/06
 15  
  * @see <a href="http://cvs.buckosoft.com/Projects/java/PicMan/PicMan/src/com/buckosoft/PicMan/db/Server_SyncDao.java">Server_SyncDao.java</a>
 16  
  */
 17  0
 public class Server_SyncDaoJdbc implements Server_SyncDao {
 18  
 
 19  
         public Date getClientTimestamp(String host) {
 20  
                 // TODO Auto-generated method stub
 21  0
                 return null;
 22  
         }
 23  
 
 24  
         public void setClientTimestamp(String host) {
 25  
                 // TODO Auto-generated method stub
 26  
 
 27  0
         }
 28  
 
 29  
 }