List of usage examples for com.vaadin.ui CustomComponent subclass-usage
From source file annis.gui.components.HelpButton.java
/** * * @author Thomas Krause <krauseto@hu-berlin.de> */ public class HelpButton<T> extends CustomComponent implements Field<T>, Button.ClickListener { private Field<T> field;
From source file annis.gui.widgets.GripDragComponent.java
/** * A draggabe panel where only a specific grip is the starting point for the drag action. * @author Thomas Krause <krauseto@hu-berlin.de> */ public class GripDragComponent extends CustomComponent implements DragSource, LegacyComponent { public GripDragComponent(Component panel) {
From source file br.com.anteros.mobileserver.app.form.ConfigurationForm.java
public class ConfigurationForm extends CustomComponent { private AbsoluteLayout mainLayout; private Label lblJNDI; private TextField fldJNDI; private Label lblTipoPool;
From source file br.com.anteros.mobileserver.app.form.UserLoginForm.java
public class UserLoginForm extends CustomComponent { private AbsoluteLayout mainLayout; private VerticalLayout verticalLayout; private HorizontalLayout horizontalLayout; private AbsoluteLayout absoluteLayout;
From source file by.bigvova.views.AdminView.java
/** * View that is available to administrators only. * * @author Petter Holmstrm (petter@vaadin.com) */ @Secured("ROLE_ADMIN")
From source file by.bigvova.views.UserView.UserView.java
/** * View that is available for all users. * * @author Petter Holmstrm (petter@vaadin.com) */ @Secured({ "ROLE_USER", "ROLE_ADMIN" })
From source file ch.bfh.ti.soed.hs16.srs.black.view.loginView.LoginView.java
public class LoginView extends CustomComponent implements View { public static final String NAME = "login"; private TextField usernameField; private PasswordField passwordField; private Button loginButton;
From source file ch.bfh.ti.soed.hs16.srs.black.view.reservationView.ReservationMakeView.java
public class ReservationMakeView extends CustomComponent implements View { private DateField fromField; private DateField toField; private NativeSelect roomSelect; private Button makeReservationButton;
From source file ch.bfh.ti.soed.hs16.srs.black.view.reservationView.ReservationTableView.java
public class ReservationTableView extends CustomComponent implements View { private Table table; private VerticalLayout listReservations; public ReservationTableView() {
From source file ch.bfh.ti.soed.hs16.srs.black.view.signUpView.SignUpView.java
public class SignUpView extends CustomComponent implements View { public static final String NAME = "signup"; private TextField usernameField; private PasswordField passwordField; private PasswordField passwordFieldRepeat;