Java tutorial
/******************************************************************************* * This file is part of the EEG-database project * * ========================================== * * Copyright (C) 2013 by University of West Bohemia (http://www.zcu.cz/en/) * * *********************************************************************************************************************** * * 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. * * *********************************************************************************************************************** * * GroupForm.java, 2013/10/02 00:01 Jakub Rinkes ******************************************************************************/ package cz.zcu.kiv.eegdatabase.wui.ui.experiments.forms; import org.apache.wicket.ajax.AjaxRequestTarget; import org.apache.wicket.ajax.markup.html.form.AjaxButton; import org.apache.wicket.extensions.ajax.markup.html.modal.ModalWindow; import org.apache.wicket.markup.html.basic.Label; import org.apache.wicket.markup.html.form.Form; import org.apache.wicket.markup.html.form.RequiredTextField; import org.apache.wicket.markup.html.form.TextArea; import org.apache.wicket.markup.html.panel.FeedbackPanel; import org.apache.wicket.model.CompoundPropertyModel; import org.apache.wicket.spring.injection.annot.SpringBean; import org.apache.wicket.validation.IValidatable; import org.apache.wicket.validation.IValidator; import org.apache.wicket.validation.validator.StringValidator; import cz.zcu.kiv.eegdatabase.data.pojo.ResearchGroup; import cz.zcu.kiv.eegdatabase.wui.app.session.EEGDataBaseSession; import cz.zcu.kiv.eegdatabase.wui.components.utils.ResourceUtils; import cz.zcu.kiv.eegdatabase.wui.core.group.ResearchGroupFacade; public class GroupForm extends Form<ResearchGroup> { private static final long serialVersionUID = -6923624265430354793L; @SpringBean ResearchGroupFacade researchGroupFacade; public GroupForm(String id, final ModalWindow window) { super(id, new CompoundPropertyModel<ResearchGroup>(new ResearchGroup())); final FeedbackPanel feedback = new FeedbackPanel("feedback"); feedback.setOutputMarkupId(true); add(feedback); add(new Label("addGroupHeader", ResourceUtils.getModel("pageTitle.addGroupDefinition"))); RequiredTextField<String> title = new RequiredTextField<String>("title"); title.setLabel(ResourceUtils.getModel("label.title")); title.add(new TitleExistsValidator()); title.add(StringValidator.maximumLength(100)); add(title); TextArea<String> description = new TextArea<String>("description"); description.setRequired(true); description.setLabel((ResourceUtils.getModel("label.description"))); description.add(StringValidator.maximumLength(250)); add(description); add(new AjaxButton("submitForm", ResourceUtils.getModel("button.submitForm"), this) { private static final long serialVersionUID = 1L; @Override protected void onSubmit(AjaxRequestTarget target, Form<?> form) { ResearchGroup researchGroup = (ResearchGroup) form.getModelObject(); researchGroup.setPerson(EEGDataBaseSession.get().getLoggedUser()); researchGroupFacade.create(researchGroup); window.close(target); } @Override protected void onError(AjaxRequestTarget target, Form<?> form) { target.add(feedback); } }); add(new AjaxButton("closeForm", ResourceUtils.getModel("button.close"), this) { private static final long serialVersionUID = 1L; @Override protected void onSubmit(AjaxRequestTarget target, Form<?> form) { window.close(target); } }.setDefaultFormProcessing(false)); setOutputMarkupId(true); } private class TitleExistsValidator implements IValidator<String> { private static final long serialVersionUID = 1L; @Override public void validate(IValidatable<String> validatable) { final String title = validatable.getValue(); if (researchGroupFacade.existsGroup(title)) { error(ResourceUtils.getString("error.titleAlreadyInDatabase")); } } } }