⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ipluginnotificationhandler.java

📁 myjxta是用jxta开发的一个p2p通讯软件 有聊天 文件共享 视频3大功能 界面采用swing
💻 JAVA
字号:
/* * Created by IntelliJ IDEA. * User: frto * Date: 04.10.2005 * Time: 21:01:33 */package net.jxta.myjxta.plugin;import net.jxta.myjxta.util.Group;/** * this interface will be used to send various notifications from the myjxta controller * to the plugins */public interface IPluginNotificationHandler {    /**     * The own peer has joined the given group     * @param p_group     */    void groupJoined(Group p_group);    /**     * The own peer has left the given group     * @param p_group     */    void groupResigned(Group p_group);    /**     * The ConnectionStatus of the own peer inside the given group has changed     * @param p_group     */    void groupStateChanged(Group p_group);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -