Java tutorial
/******************************************************************************* * Copyright 2012 * Ubiquitous Knowledge Processing (UKP) Lab and FG Language Technology * Technische Universitt Darmstadt * * 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. ******************************************************************************/ package de.tudarmstadt.ukp.clarin.webanno.webapp.page.annotation.component; import org.apache.wicket.ajax.AjaxRequestTarget; import org.apache.wicket.ajax.markup.html.AjaxLink; import org.apache.wicket.extensions.ajax.markup.html.modal.ModalWindow; import org.apache.wicket.markup.html.panel.Panel; import org.apache.wicket.model.IModel; import de.tudarmstadt.ukp.clarin.webanno.brat.annotation.BratAnnotatorModel; import de.tudarmstadt.ukp.clarin.webanno.webapp.dialog.GuidelineModalWindowPanel; import de.tudarmstadt.ukp.clarin.webanno.webapp.page.annotation.AnnotationPage; import de.tudarmstadt.ukp.clarin.webanno.webapp.page.correction.CorrectionPage; import de.tudarmstadt.ukp.clarin.webanno.webapp.page.curation.CurationPage; /** * A panel used by {@link AnnotationPage} {@link CurationPage} and {@link CorrectionPage} consisting * of a link to open annotation guideline * * */ public class GuidelineModalPanel extends Panel { private static final long serialVersionUID = 671214149298791793L; public GuidelineModalPanel(String id, final IModel<BratAnnotatorModel> aModel) { super(id, aModel); final ModalWindow guidelineModal; add(guidelineModal = new ModalWindow("guidelineModal")); guidelineModal.setInitialWidth(550); guidelineModal.setInitialHeight(450); guidelineModal.setResizable(true); guidelineModal.setWidthUnit("px"); guidelineModal.setHeightUnit("px"); guidelineModal.setTitle("Open Annotation Guideline, in separate window"); add(new AjaxLink<Void>("showGuidelineModal") { private static final long serialVersionUID = 7496156015186497496L; @Override public void onClick(AjaxRequestTarget target) { guidelineModal.setContent( new GuidelineModalWindowPanel(guidelineModal.getContentId(), guidelineModal, aModel)); guidelineModal.show(target); } }); } }