aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/RootTestApplication.java
Commit message (Collapse)AuthorAgeFilesLines
* Allow configuring the root class to use, remove RootLayoutLeif Åstrand2011-11-161-40/+0
|
* Create Root initialized with RootLayout defined in web.xmlLeif Åstrand2011-11-101-88/+6
|
* Pass around rootId instead of windowName and use it to find the RootLeif Åstrand2011-11-101-12/+3
|
* LoginForm now uses RequestHandlerLeif Åstrand2011-11-091-0/+13
|
* Pass WrappedRequest to Root.init and RootLayout.initLeif Åstrand2011-11-081-2/+2
|
* Created and integrated a RequestHandler for application resourcesLeif Åstrand2011-11-081-2/+42
|
* Pass WrappedRequest to Application.getRootLeif Åstrand2011-11-041-5/+20
| | | | Also removed some stuff from WrappedRequest to make it easier to get it working in all required places
* Added initial support for RequestHandlersLeif Åstrand2011-11-031-0/+25
|
* Added RootLayout and implemented rudimentary Root using RootLayoutLeif Åstrand2011-11-031-6/+18
|
* Removed the Root interface and renamed DefaultRoot class to RootLeif Åstrand2011-11-031-2/+1
| | | | | Also moved the scrollTo functionality from Window to Root as the change in the Root class hierachy caused the functionality to not work in Window.
* Restored support for executeJavaScript in RootLeif Åstrand2011-11-021-1/+1
|
* Restored support for Notifications in rootLeif Åstrand2011-11-021-5/+1
| | | Also removed the deprecated set/getMessage method from Notification
* Restored functionality related to subwindows and focus in RootLeif Åstrand2011-11-021-4/+13
|
* Split Window to Root and WindowLeif Åstrand2011-11-011-0/+22
Everything related to top level windows disabled in Window, introduced basic Root for top level windows and disabled everything that isn't required to get a simple hard coded example to run.