All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ksyzt.gwt.client.mainframe.IAppModule Maven / Gradle / Ivy

There is a newer version: 2.3.0
Show newest version
package com.ksyzt.gwt.client.mainframe;

import com.google.gwt.user.client.ui.Widget;

// TODO: Auto-generated Javadoc

/**
 * 系统模块必须实现此接口.
 *
 * @author Administrator
 */
public interface IAppModule {

    /**
     * 模块初始化.
     *
     * @param application the application
     * @param pros        the pros
     */
    public void onInitialize(AppData application, ModuleProperties pros);

    /**
     * 模块卸载.
     */
    public void onUnInitialize();

    /**
     * 得到模块 的根元素.
     *
     * @return the root widget
     */
    public Widget getRootWidget();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy