All Downloads are FREE. Search and download functionalities are using the official Maven repository.

annis.visualizers.component.grid.GridVisualizer Maven / Gradle / Ivy

There is a newer version: 4.0.0-beta.4
Show newest version
/*
 * Copyright 2012 Corpuslinguistic working group Humboldt University Berlin.
 *
 * 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 annis.visualizers.component.grid;

import annis.libgui.VisualizationToggle;
import annis.libgui.media.MediaController;
import annis.libgui.media.PDFController;
import annis.libgui.visualizers.AbstractVisualizer;
import annis.libgui.visualizers.VisualizerInput;
import com.vaadin.server.VaadinSession;
import net.xeoh.plugins.base.annotations.PluginImplementation;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * Visualizes annotations of a spans.
 *
 *
 * Mappings: 
*
    *
  • * It is possible to specify the order of annotation layers in each grid. Use * annos: anno_name1, anno_name2, anno_name3 to specify the order or * annotation layers. If anno: is used, additional annotation layers not * present in the list will not be visualized. If mappings is left empty, layers * will be ordered alphabetically. You can also use regular expressions in the annos * mapping by enclosing it in slashes like in annos:/.*::v.+/,/(ns1::a|ns1::b|ns2::c)/. * Please note that the regular expressions have to match the whole qualified name including the * namespace. *
  • *
  • * tok_anno:true can be used to also display the annotations of the * token. *
  • *
  • * hide_tok:true switches the line with the token value off. *
  • *
  • * show_ns If set to "true" always show the namespace of the annotations. Alternativly a comma-separated list of fully qualified annotation names (e.g. {@code myns::lemma}) or regular expressions enclosed in slashes (e.g. {@code /my.*::lem.+/} for which the namespace should be shown can be given. *
  • *
  • * pdf_page_key: name of the annotation that contains the pdf page number *
  • *
* * @author Thomas Krause */ @PluginImplementation public class GridVisualizer extends AbstractVisualizer { private static final Logger log = LoggerFactory. getLogger(GridVisualizer.class); @Override public String getShortName() { return "grid"; } @Override public GridComponent createComponent(VisualizerInput visInput, VisualizationToggle visToggle) { MediaController mediaController = VaadinSession.getCurrent().getAttribute( MediaController.class); PDFController pdfController = VaadinSession.getCurrent().getAttribute( PDFController.class); GridComponent component = null; try { component = new GridComponent(visInput, mediaController, pdfController, true, null); } catch (Exception ex) { log.error("create {} failed", GridComponent.class.getName(), ex); } return component; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy