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

📄 infotab.java

📁 gwt 开发 界面控件的封装
💻 JAVA
字号:
/*
 * package com.mc.tables.client
 */
package com.mc.tables.client;

/*
 * import com.google.gwt.core.client.*;
 */
import com.google.gwt.core.client.EntryPoint;
import com.google.gwt.user.client.ui.RootPanel;
import com.google.gwt.user.client.ui.Widget;

/*
 * class InfoTab  public    关于Tab的数据 表格的数据
 */
public class InfoTab implements EntryPoint{

	/*
	 * (non-Javadoc) 入口
	 * @see com.google.gwt.core.client.EntryPoint#onModuleLoad()
	 */
	
	public void onModuleLoad() {
		// TODO Auto-generated method stub
		int index = 6;
	
		WidgetTest wt = new WidgetTest();
		Widget w = wt.StartTest(index);
		if(w != null)
		{
			RootPanel.get().add(w);
		}	
	}
	
}

⌨️ 快捷键说明

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