aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/Application.java
Commit message (Collapse)AuthorAgeFilesLines
* Moved server files to a server src folder (#9299)Artur Signell2012-08-131-2426/+0
|
* Register BootstrapListener to Application (#9274)Leif Åstrand2012-08-131-0/+34
|
* Merge remote-tracking branch 'origin/6.8'Leif Åstrand2012-08-031-0/+2
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | + add @Override Conflicts: src/com/vaadin/terminal/gwt/client/Util.java src/com/vaadin/terminal/gwt/client/ui/VOverlay.java src/com/vaadin/terminal/gwt/client/ui/menubar/VMenuBar.java src/com/vaadin/terminal/gwt/client/ui/popupview/VPopupView.java src/com/vaadin/terminal/gwt/client/ui/table/VScrollTable.java src/com/vaadin/terminal/gwt/server/AbstractCommunicationManager.java src/com/vaadin/ui/LoginForm.java src/com/vaadin/ui/Table.java tests/test.xml
* | Revert root cleanup changes - this commit was not supposed to go to masterJohannes Dahlström2012-07-271-23/+0
| | | | | | | | This reverts commit 25f664f993a1eb936cb516f1b748773b9b4d5239.
* | Initial commit for root cleanup support (#7893)Johannes Dahlström2012-07-181-0/+23
| |
* | Added rootId to stream variables URLs (#9034)Artur Signell2012-06-291-0/+14
| |
* | Rename setCurrentXyz() to setCurrent() (#9029)Leif Åstrand2012-06-251-6/+6
| |
* | Moved connector tracking from Application to RootArtur Signell2012-06-211-52/+1
| | | | | | | | | | | | This should fix issues with connectors being detached and reattached and also make the connector map cleanup method unnecessary as long as AbstractConnect.attach and detach always are called (#8943)
* | Merge branch '6.8'Johannes Dahlström2012-06-191-2/+3
|\| | | | | | | | | | | | | | | | | | | Conflicts: src/com/vaadin/terminal/gwt/client/ui/draganddropwrapper/VDragAndDropWrapper.java src/com/vaadin/terminal/gwt/client/ui/form/VForm.java src/com/vaadin/terminal/gwt/client/ui/window/VWindow.java tests/server-side/com/vaadin/tests/VaadinClasses.java Removed Java5-incompatible @Override annotations
* | Merge commit '17c14'Johannes Dahlström2012-06-121-3/+10
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/com/vaadin/Application.java src/com/vaadin/data/util/MethodPropertyDescriptor.java src/com/vaadin/data/util/sqlcontainer/SQLContainer.java src/com/vaadin/terminal/gwt/server/AbstractApplicationPortlet.java src/com/vaadin/terminal/gwt/server/AbstractApplicationServlet.java src/com/vaadin/terminal/gwt/server/AbstractCommunicationManager.java src/com/vaadin/terminal/gwt/server/DragAndDropService.java src/com/vaadin/terminal/gwt/server/JsonPaintTarget.java src/com/vaadin/terminal/gwt/widgetsetutils/ClassPathExplorer.java src/com/vaadin/ui/Table.java tests/testbench/com/vaadin/launcher/ApplicationRunnerServlet.java
| * #8297 Do not use static logger instancesHenri Sara2012-06-051-6/+8
| | | | | | | | svn changeset:23882/svn branch:6.8
* | Remove classloader field to make Application serializable (#8644)Leif Åstrand2012-04-161-41/+7
| | | | | | | | The ClassLoader for loading Root instances is instead fetched using request.getDeploymentConfiguration().getClassLoader();
* | Moved isConnectorEnabled() to ClientConnector and improved javadoc.Artur Signell2012-03-301-3/+4
| | | | | | | | ServerConnector is always enabled.
* | Mark ApplicationStartEvent as serializable (#8542)Leif Åstrand2012-03-271-1/+1
| |
* | Enable loading Root subclasses with a custom class loader (#8542)Leif Åstrand2012-03-271-19/+140
| |
* | Refactor error messages not to use UIDL (#8437).Henri Sara2012-03-211-8/+3
| | | | | | | | This change removes support for error messages on tabs of a tabsheet or an accordion. Those should be implemented differently if needed.
* | Code cleanup for paint/dirty state tracking changesArtur Signell2012-03-211-1/+0
| |
* | #8455 Root.getCurrentRoot can now be used in Root.init()Artur Signell2012-03-211-1/+3
| |
* | Moved Connector -> Connector Id mapping to AbstractComponentArtur Signell2012-03-211-0/+66
| | | | | | | | | | Moved Connector Id -> Connector mapping to Application Moved dirty connector tracking to Root Removed adding of
* | Pass initial request details through the browser (#8232)Leif Åstrand2012-01-041-116/+1
| | | | | | | | | | | | | | By passing the details through the browser, we don't need any state mapped to a rootId that could be sent multiple times by caching in the browser Old test updated to test for this
* | Javadocced the fact that root preserving should not be toggled on-the-fly ↵Marc Englund2011-12-221-0/+4
| | | | | | | | when the UI is showing.
* | Root preservation should now work, even with @EagerInit etc. Also if turned ↵Marc Englund2011-12-221-23/+25
| | | | | | | | on in Root constructor or init(). Limitation: can not preserve roots that are already shown when preservation is turned on (this could be fixed in the future).
* | Also check contents of BrowserDetails to determine if details are thereLeif Åstrand2011-12-221-3/+5
| |
* | Change the default to a two request bootstrapLeif Åstrand2011-12-221-3/+3
| | | | | | | | Add @EagerInit annotation to indicate that that no browser details are required, enabling a one request bootstrap.
* | Replace RootPreserveStrategy with Application.setRootPreserved(boolean)Leif Åstrand2011-12-221-107/+45
| |
* | RootRequiresMoreInformation -> RootRequiresMoreInformationExceptionLeif Åstrand2011-12-221-12/+12
| |
* | Rename @RootWidgetset -> @WidgetsetLeif Åstrand2011-12-221-3/+3
| |
* | Rename @RootTheme -> @ThemeLeif Åstrand2011-12-221-2/+2
| |
* | Javadoc typoArtur Signell2011-12-221-1/+1
| |
* | #8102 Removed "value" from value converter used in AbstractField andArtur Signell2011-12-211-1/+4
| | | | | | | | renamed updateValueConverterFromFactory to setConverter based on API review meeting.
* | Fix typo in public APILeif Åstrand2011-12-201-2/+2
| |
* | Add Application.getRoots()Leif Åstrand2011-12-201-0/+18
| |
* | Make Root.init abstract, add non-abstract LegacyWindow and migrate testsLeif Åstrand2011-12-201-94/+17
| |
* | Refactor #8068 to enable support for portletsLeif Åstrand2011-12-191-30/+118
| |
* | Don't use WeakHashMap as it isn't SerializableLeif Åstrand2011-12-191-2/+1
| |
* | Fix method name typo (#8068)Leif Åstrand2011-12-161-2/+2
| |
* | #8103 ConverterFactory is no longer static + javadoc updatesArtur Signell2011-12-121-14/+12
| |
* | Merge remote branch 'origin/6.8'Leif Åstrand2011-12-091-2/+2
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/com/vaadin/Application.java src/com/vaadin/data/Property.java src/com/vaadin/data/util/PropertyFormatter.java src/com/vaadin/terminal/ParameterHandler.java src/com/vaadin/terminal/URIHandler.java src/com/vaadin/terminal/gwt/client/HistoryImplIEVaadin.java src/com/vaadin/terminal/gwt/client/ui/layout/ChildComponentContainer.java src/com/vaadin/terminal/gwt/server/ApplicationPortlet.java src/com/vaadin/terminal/gwt/server/PortletApplicationContext.java src/com/vaadin/ui/Field.java src/com/vaadin/ui/LoginForm.java src/com/vaadin/ui/UriFragmentUtility.java
| * #7354 IT Mill -> Vaadin find and replaceArtur Signell2011-12-081-2/+2
| | | | | | | | svn changeset:22317/svn branch:6.7
| * #6862 Update Application.getWindow JavadocArtur Signell2011-12-071-8/+8
| | | | | | | | svn changeset:22305/svn branch:6.7
* | Merge remote branch 'origin/databinding'Leif Åstrand2011-12-081-0/+47
|\ \ | | | | | | | | | | | | | | | | | | | | | Conflicts: src/com/vaadin/Application.java src/com/vaadin/ui/AbstractField.java tests/testbench/com/vaadin/tests/integration/LiferayThemeDemo.java tests/testbench/com/vaadin/tests/tickets/Ticket1673.java
| * | Initial implementation of converters for AbstractFieldArtur Signell2011-11-281-0/+47
| | |
* | | #8068 Provide an option for preserving Root state on browser refreshLeif Åstrand2011-12-071-18/+77
| | |
* | | URI fragment support in Root (#8048)Leif Åstrand2011-12-071-2/+2
| | |
* | | #7885 Define theme and widgetset for each RootLeif Åstrand2011-12-061-3/+51
| | |
* | | Add a bunch of javadoc commentsLeif Åstrand2011-11-301-3/+499
| | |
* | | Ensure window attached by LegacyApplication has an applicationLeif Åstrand2011-11-291-0/+7
| | |
* | | Add Serializable interface missing from some classesLeif Åstrand2011-11-291-1/+1
| | |
* | | Add support for deferred Root init and early widgetset loadingLeif Åstrand2011-11-281-6/+20
| | |
* | | Initial support for lazy root creationLeif Åstrand2011-11-251-29/+91
| | |