?? fakecommand.java
字號:
/*
* *****************************************************
* Copyright (c) 2005 IIM Lab. All Rights Reserved.
* Created by xuehao at 2005-10-12
* Contact: zxuehao@mail.ustc.edu.cn
* *****************************************************
*/
package org.indigo.commands;
/**
* 暫沒有用到此類,待以后擴展用。
* @author wbz
*
*/
public class FakeCommand extends Command
{
public FakeCommand(String file)
{
super(file);
}
public void execute()
{
System.out.println( itsPropertyFile + " will executing..." );
try
{
Thread.sleep( 50 );
} catch (InterruptedException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
System.out.println( itsPropertyFile + " will stop." );
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -