Newer
Older
DTRAMServer / src / main / java / com / example / test / services / ButtonService.java
package com.example.test.services;

import org.springframework.stereotype.Service;

import com.example.test.dtram.Dtram;

@Service
public class ButtonService {
	
	private final Dtram dtram;
	
	ButtonService(Dtram dtram) {
		this.dtram = dtram;
	}
	
	public void onButtonPressed(String id) {
		dtram.onRestEvent(id, "onMousePressed", null);
	}
	
	public void onButtonReleased(String id) {
		dtram.onRestEvent(id, "onMouseReleased", null);
	}
	
}