Project

General

Profile

Download (233 Bytes) Statistics
| Branch: | Tag: | Revision:
1
package com.vaadin.devday.ui;
2

    
3
import com.vaadin.devday.ui.view.PopupView;
4
import com.vaadin.navigator.View;
5

    
6
public interface NavigationManager {
7

    
8
	View getCurrentView();
9

    
10
	<T extends PopupView> T showInPopup(Class<T> popupType);
11
}
(6-6/7)