diff options
author | Petter Holmström <petter.holmstrom@itmill.com> | 2009-11-03 07:42:31 +0000 |
---|---|---|
committer | Petter Holmström <petter.holmstrom@itmill.com> | 2009-11-03 07:42:31 +0000 |
commit | b47a8d3e858fd90e0252ceb0c01adbe43073a46a (patch) | |
tree | 5474379e2e7c17e8d35bb54529241e18002291ca /src/com/vaadin/Application.java | |
parent | ae89a704f20c11fbfdab8eea0457dfa6ea98ae7d (diff) | |
download | vaadin-framework-b47a8d3e858fd90e0252ceb0c01adbe43073a46a.tar.gz vaadin-framework-b47a8d3e858fd90e0252ceb0c01adbe43073a46a.zip |
More changes
svn changeset:9592/svn branch:portlet_2.0
Diffstat (limited to 'src/com/vaadin/Application.java')
-rw-r--r-- | src/com/vaadin/Application.java | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/com/vaadin/Application.java b/src/com/vaadin/Application.java index ca86467e04..bea366307d 100644 --- a/src/com/vaadin/Application.java +++ b/src/com/vaadin/Application.java @@ -120,6 +120,11 @@ public abstract class Application implements URIHandler, private URL applicationUrl; /** + * The ID of the portlet window that this application runs in. + */ + private String portletWindowId; + + /** * Name of the theme currently used by the application. */ private String theme = null; @@ -181,6 +186,16 @@ public abstract class Application implements URIHandler, */ private Terminal.ErrorListener errorHandler = this; + // TODO Document me! + public String getPortletWindowId() { + return portletWindowId; + } + + // TODO Document me! + public void setPortletWindowId(String portletWindowId) { + this.portletWindowId = portletWindowId; + } + /** * <p> * Gets a window by name. Returns <code>null</code> if the application is |