?? idealdatasave.java
字號(hào):
/*
* Created on 2003-5-6
*
*/
package com.tanghan.plugin.dataSave;
import org.eclipse.ui.plugin.*;
import com.tanghan.util.TanghanException;
/**
* 處理用于存儲(chǔ)數(shù)據(jù)的文件
* @author Jerry Tang
* @version v0.1.0
* @copyright (C) 2003 Tanghan Studio
*
*/
public interface IDealDataSave {
/**裝載處理數(shù)據(jù)的文檔
* @param plugin 其對(duì)應(yīng)的插件
* */
public void loadData(AbstractUIPlugin plugin) throws TanghanException;
/**存儲(chǔ)數(shù)據(jù)*/
public void saveData() throws TanghanException;
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -