首页| JavaScript| HTML/CSS| Matlab| PHP| Python| Java| C/C++/VC++| C#| ASP| 其他|
购买积分 购买会员 激活码充值

您现在的位置是:虫虫源码 > 其他 > GWT +一些基本工具给项目。

GWT +一些基本工具给项目。

  • 资源大小:159.51 kB
  • 上传时间:2021-06-30
  • 下载次数:0次
  • 浏览次数:0次
  • 资源积分:1积分
  • 标      签: GWT 项目 工具 一些 基本

资 源 简 介

Features Listener-observer objects, with basic UI widgets. ``` ItemManager myString = new ItemManager("Frank"); SmartLabel name = new SmartLabel(); myString.registerListener(name); // label updates automatically when myString.setItem(String) called. ``` Send Channel messages with objects. ``` // From server Employee e = ...; CreateEmployeeMessage message = new CreateEmployeeMessage(e); messageClients(listOfClients, message); ``` Management of object fields (booleans, floats, ints, strings). ``` // From client SetIntegerMessage ssm = new SetIntegerMessage(employeeType, emplId, propIndex, propValue); clientRPC.sendMessage(ssm); ``` ``` // On server employee.setInt(propIndex, propValue); ``` Basic app structure. Data: BaseObject Client UI: AppDisplay
VIP VIP
0.173349s