diff options
author | Leif Åstrand <leif@vaadin.com> | 2012-10-24 11:31:55 +0300 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2012-10-24 11:31:55 +0300 |
commit | eaffcb2f31b8be2b8738685a6e30607dadf58d41 (patch) | |
tree | 43067f297dc0d465c314c9f61b896c8db6974f76 /shared | |
parent | f1546b6285837d9a8a964e6ef6998ad00683c23a (diff) | |
download | vaadin-framework-eaffcb2f31b8be2b8738685a6e30607dadf58d41.tar.gz vaadin-framework-eaffcb2f31b8be2b8738685a6e30607dadf58d41.zip |
Create UIProvider & Extension for easily opening popups. (#9513)
* Based on Pekka Hyvönen's patch
Change-Id: Ib97fc77a9a116da2b5af0cb2233a81aaa829f763
Diffstat (limited to 'shared')
-rw-r--r-- | shared/src/com/vaadin/shared/ui/BrowserPopupExtensionState.java | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/shared/src/com/vaadin/shared/ui/BrowserPopupExtensionState.java b/shared/src/com/vaadin/shared/ui/BrowserPopupExtensionState.java new file mode 100644 index 0000000000..a9ca6841d8 --- /dev/null +++ b/shared/src/com/vaadin/shared/ui/BrowserPopupExtensionState.java @@ -0,0 +1,27 @@ +/* + * Copyright 2012 Vaadin Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not + * use this file except in compliance with the License. You may obtain a copy of + * the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under + * the License. + */ + +package com.vaadin.shared.ui; + +import com.vaadin.shared.ComponentState; + +public class BrowserPopupExtensionState extends ComponentState { + + public String target = "_blank"; + + public String features; + +} |