98
GWT StockExchange APP Example
In GWT StockExchange, we would be using all the basic widgets, panels, layout to design a Web application using Google Web Toolkit named Stock Exchange.
This app can be used to add the content of stock market where its value would be changing after certain time interval. Values that would be calculated are Price followed by Change also has the option to remove the content as well.
Use of Panel and Widget are below:
- HTML Panel
- Flex Table
- Flow Panel
- Timer
Files Created
- StockExchange.gwt.xml GWT module definition
- StockExchange.html host page
- StockExchange.css application style sheet
- web.xml Java web application descriptor
- StockExchange.java GWT entry point class
- GreetingService.java, GreetingServiceAsync.java, GreetingServiceImpl.java GWT sample RPC classes
- gwt-servlet.jar GWT server runtime library
- StockExchangeTest.java Starter test case for Exchange
StockExchange.html
StockExchange.java
StockPrice.java
StockExchange.gwt.xml
Output:
Next TopicGWT Testing