Content
Our Basic And Initial Concept
o Create a page with a title, create a center message on page
o Here is the wireframe, that’s a layout of page with widgets
|——————————–|
| Title of Pages |
| |
| message goes here |
| |
|——————————–|
o See it in action
o You can download the code at: sampelbasic00.zip
o Create a page with a title, create a center message on page
o Here is the wireframe, that’s a layout of page with widgets
|——————————–|
| Title of Pages |
| |
| message goes here |
| |
|——————————–|
o See it in action
o You can download the code at: sampelbasic00.zip
GWT Applications need:
o Module descriptor
o Public resources, such as the html, css, images for a web page
o Main application java code – the client code
o Service code – the server side code
o Module descriptor
o Public resources, such as the html, css, images for a web page
o Main application java code – the client code
o Service code – the server side code
Here are the base directories:
/src – where our main source code
/test – where our test code
/war – where our compile will be generated, and our
public files, like the html, css, images are placed.
Within it is the /WEB-INF java directory where we
place our J2EE web.xml starting page.
/src – where our main source code
/test – where our test code
/war – where our compile will be generated, and our
public files, like the html, css, images are placed.
Within it is the /WEB-INF java directory where we
place our J2EE web.xml starting page.