From eaffcb2f31b8be2b8738685a6e30607dadf58d41 Mon Sep 17 00:00:00 2001 From: Leif Åstrand Date: Wed, 24 Oct 2012 11:31:55 +0300 Subject: Create UIProvider & Extension for easily opening popups. (#9513) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Based on Pekka Hyvönen's patch Change-Id: Ib97fc77a9a116da2b5af0cb2233a81aaa829f763 --- .../shared/ui/BrowserPopupExtensionState.java | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 shared/src/com/vaadin/shared/ui/BrowserPopupExtensionState.java (limited to 'shared/src/com') 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; + +} -- cgit v1.2.3