AHATDummy.java [src/java/database/ahat] Revision: default Date:
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package database.ahat;
/**
*
* @author Brad
*/
public class AHATDummy implements AHATDatabase{
@Override
public double getLightingTypeUseFactor(int house, int lightingType) {
return 1;
}
@Override
public void close() throws Exception {
// don't need to do anything because we're not actually connecting to a db.
}
@Override
public double getLightingTypeBaseFactor(int house, int lightingType, boolean reimeId) {
return 1;
}
}