Renamed AbstractDevice to HalAbstractDevice and moved int intf package
This commit is contained in:
parent
8d51526481
commit
7e8938c38c
17 changed files with 37 additions and 52 deletions
|
|
@ -114,12 +114,12 @@ public class EventControllerManagerTest {
|
|||
public void initialize() { }
|
||||
|
||||
@Override
|
||||
public void register(HalEventConfig event) {
|
||||
public void register(HalDeviceConfig event) {
|
||||
size++;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void deregister(HalEventConfig event) {
|
||||
public void deregister(HalDeviceConfig event) {
|
||||
size--;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,11 +1,7 @@
|
|||
package se.hal;
|
||||
|
||||
import org.junit.Test;
|
||||
import se.hal.intf.HalAbstractController;
|
||||
import se.hal.intf.HalDeviceReportListener;
|
||||
import se.hal.intf.HalSensorConfig;
|
||||
import se.hal.intf.HalSensorController;
|
||||
import se.hal.intf.HalSensorData;
|
||||
import se.hal.intf.*;
|
||||
import se.hal.struct.Sensor;
|
||||
import se.hal.struct.devicedata.HumiditySensorData;
|
||||
import se.hal.struct.devicedata.TemperatureSensorData;
|
||||
|
|
@ -140,11 +136,11 @@ public class SensorControllerManagerTest {
|
|||
public void initialize() { }
|
||||
|
||||
@Override
|
||||
public void register(HalSensorConfig sensor) {
|
||||
public void register(HalDeviceConfig sensor) {
|
||||
size++;
|
||||
}
|
||||
@Override
|
||||
public void deregister(HalSensorConfig sensor) {
|
||||
public void deregister(HalDeviceConfig sensor) {
|
||||
size--;
|
||||
}
|
||||
@Override
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue