📄 iprotocolcommand.java
字号:
package be.noctis.vnc.relay;import java.util.Arrays;import java.util.HashSet;import java.util.Set;public interface IProtocolCommand { public static final int SERVER_CONNECTION = 10; public static final int CLIENT_CONNECTION = 20; public static final int RELAY_CONNECTION = 30; public Set<Integer> ALL_COMMANDS = new HashSet<Integer>(Arrays.asList(new Integer[] { new Integer(SERVER_CONNECTION), new Integer(CLIENT_CONNECTION), new Integer(RELAY_CONNECTION)}));}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -