minor fixes

This commit is contained in:
Stephan Richter
2021-06-15 09:17:17 +02:00
parent 19b1b3ed01
commit cb8d642ba7
5 changed files with 35 additions and 4 deletions

View File

@@ -0,0 +1,15 @@
package de.srsoftware.web4rail;
import de.srsoftware.tools.Tag;
/**
* @author Stephan Richter, SRSoftware 2020…2021
*/
public interface Device {
public static final String ADDRESS = "address";
public static final String PROTOCOL = "proto";
public int address();
public Tag link(String...args);
}