guiapi.java

来自「We intend to develop a wifi enabled p2p 」· Java 代码 · 共 46 行

JAVA
46
字号
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 + =
减小字号Ctrl + -
显示快捷键?