📄 guiapi.java
字号:
package edu.uiuc.cs.cs327.linuxwifi.gui;
import java.awt.*;
import java.util.Vector.*;
import java.util.Vector;
import edu.uiuc.cs.cs327.linuxwifi.services.*;
/**
* Class used as the API to the GUI package for other underlying packages
*/
public class GuiApi {
private static final boolean DEBUG = false;
public GuiApi() {
}
/**
* Informs GUI that a file status update has occured
* @param aFileInfo a FileInfo object for the file that has been updated
*/
public void notifyFileStatusChanged(FileInfo aFileInfo)
{
}
/**
* Informs GUI that a file has been added/removed from the UploadVector
* GUI should re-query the upload vector and populate its' apporpriate screens
*/
public void notifyUploadVectorChanged()
{
}
/**
* Informs GUI that a file has been added/removed from the Download Vector when in autodrive mode
* GUI should re-query the upload vector and populate its' apporpriate screens
*/
public void notifyDownloadVectorChanged()
{
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -