List of usage examples for com.vaadin.ui CustomComponent subclass-usage
From source file org.fatal1t.finbe.ui.views.RegistrationView.java
/**
*
* @author fatal1t
*/
@SpringView(name = RegistrationView.NAME)
@UIScope
From source file org.fatal1t.finbe.ui.views.SimpleLoginView.java
/**
*
* @author fatal1t
*/
@SpringView(name = SimpleLoginView.NAME)
@UIScope
From source file org.freakz.hokan_ng_springboot.bot.LoginScreen.java
/**
* Full-screen UI component that allows the user to login.
*
* @author Petter Holmstrm (petter@vaadin.com)
*/
@PrototypeScope
From source file org.freakz.hokan_ng_springboot.bot.MainScreen.java
/**
* Full-screen UI component that allows the user to navigate between views, and log out.
*
* @author Petter Holmstrm (petter@vaadin.com)
*/
@UIScope
From source file org.freakz.hokan_ng_springboot.bot.views.AdminView.java
/** * View that is available to administrators only. * * @author Petter Holmstrm (petter@vaadin.com) */ @Secured("ROLE_ADMIN")
From source file org.freakz.hokan_ng_springboot.bot.views.UserView.java
/** * View that is available for all users. * * @author Petter Holmstrm (petter@vaadin.com) */ @Secured({ "ROLE_USER", "ROLE_ADMIN" })
From source file org.hip.vif.admin.admin.ui.AbstractAdminView.java
/** * Base class for administrative views. * * @author Luthiger Created: 30.10.2011 */ @SuppressWarnings("serial")
From source file org.hip.vif.admin.groupadmin.ui.AbstractContributionsProcessView.java
/** Base class for views displaying the list of contributions pending in the workflow. * * @author Luthiger Created: 26.11.2011 */ @SuppressWarnings("serial") public abstract class AbstractContributionsProcessView extends CustomComponent { // NOPMD
From source file org.hip.vif.admin.groupadmin.ui.AbstractContributionView.java
/**
* Base class for views that display contributions. This class provides
* functionality to create view components that can placed on the views.
*
* @author Luthiger Created: 20.11.2011
*/