List of usage examples for com.vaadin.navigator View interface-usage
From source file com.m4gik.views.MainView.java
/** * @author xpoft, m4gik <michal.szczygiel@wp.pl> */ @Component @Scope("prototype") @VaadinView(MainView.NAME)
From source file com.mcparland.john.OrdersView.java
/**
* View to display orders.
*
* @author John McParland
*
*/
From source file com.mcparland.john.vaadin_mvn_arch.samples.about.AboutView.java
public class AboutView extends VerticalLayout implements View { /** * The serialVersionUID. */ private static final long serialVersionUID = 1L;
From source file com.mcparland.john.vaadin_mvn_arch.samples.crud.SampleCrudView.java
/**
* A view for performing create-read-update-delete operations on products.
*
* See also {@link SampleCrudLogic} for fetching the data, the actual CRUD
* operations and controlling the view based on events from outside.
*/
From source file com.mcparland.john.vaadin_mvn_arch.samples.ErrorView.java
/**
* View shown when trying to navigate to a view that does not exist using
* {@link com.vaadin.navigator.Navigator}.
*
*
*/
From source file com.mcparland.john.WelcomeView.java
/**
* A view which displays a friendly name.
*
* @author John McParland
*
*/
From source file com.morevaadin.vaadin7.navigation.ViewLayout.java
@SuppressWarnings("serial") public class ViewLayout extends VerticalLayout implements View { public ViewLayout(String text) { addComponent(new Label(text));
From source file com.morevaadin.vaadin7.springsecurity.ui.LoginView.java
@SuppressWarnings("serial") public class LoginView extends FormLayout implements View { private TextField loginField = new TextField("Login"); private PasswordField passwordField = new PasswordField("Password");
From source file com.morevaadin.vaadin7.springsecurity.ui.MainView.java
@SuppressWarnings("serial") public class MainView extends Panel implements View { private Label label; public MainView(final EventBus eventBus) {
From source file com.mycompany.exodious.login.java
/** * * @author damir */ public class login extends VerticalLayout implements View {