blob: e59d198d7e22f4ce10f4a81731f64bbca44895b1 [file] [log] [blame]
/*
* Copyright (c) 2020 Kentyou.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Kentyou - initial API and implementation
*/
package org.eclipse.sensinact.gateway.simulated.button.internal;
import org.eclipse.sensinact.gateway.generic.local.LocalProtocolStackEndpoint;
import org.eclipse.sensinact.gateway.generic.packet.InvalidPacketException;
/**
*
*/
public class ButtonAdapter {
private final LocalProtocolStackEndpoint<ButtonPacket> connector;
/**
* @param connector
*/
public ButtonAdapter(LocalProtocolStackEndpoint<ButtonPacket> connector) {
this.connector = connector;
}
/**
* @param value
*/
public void mouseReleased(boolean value) {
try {
connector.process(new ButtonPacket(value));
} catch (InvalidPacketException e) {
e.printStackTrace();
}
}
}