?? help.java
字號:
/* * Copyright (c) 2000 Lyrisoft Solutions, Inc. * Used by permission */package com.lyrisoft.chat.client.command;import com.lyrisoft.chat.client.Client;/** * Handle a help request */public class Help extends UserCommandProcessor { /** * @see com.lyrisoft.chat.server.local.ChatServerLocal#help */ public void process(String input, String arg, Client client) { try { String[] args = decompose(input, 2); String command = args[1]; client.getServerInterface().help(command); } catch (NotEnoughArgumentsException e) { client.getServerInterface().help(null); } }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -