Tabnine Logo
ExportedTagSet.getLanguage
Code IndexAdd Tabnine to your IDE (free)

How to use
getLanguage
method
in
de.tudarmstadt.ukp.clarin.webanno.export.model.ExportedTagSet

Best Java code snippets using de.tudarmstadt.ukp.clarin.webanno.export.model.ExportedTagSet.getLanguage (Showing top 8 results out of 315)

origin: webanno/webanno

@Deprecated
public static void createTagSet(TagSet aTagSet,
    ExportedTagSet aExTagSet, Project aProject,
    User aUser, AnnotationSchemaService aAnnotationService)
  throws IOException
{
  aTagSet.setCreateTag(aExTagSet.isCreateTag());
  aTagSet.setDescription(aExTagSet.getDescription());
  aTagSet.setLanguage(aExTagSet.getLanguage());
  aTagSet.setName(aExTagSet.getName());
  aTagSet.setProject(aProject);
  aAnnotationService.createTagSet(aTagSet);
  for (ExportedTag exTag : aExTagSet.getTags()) {
    // do not duplicate tag
    if (aAnnotationService.existsTag(exTag.getName(), aTagSet)) {
      continue;
    }
    Tag tag = new Tag();
    tag.setDescription(exTag.getDescription());
    tag.setTagSet(aTagSet);
    tag.setName(exTag.getName());
    aAnnotationService.createTag(tag);
  }
}
origin: de.tudarmstadt.ukp.clarin.webanno/webanno-export

@Deprecated
public static void createTagSet(TagSet aTagSet,
    ExportedTagSet aExTagSet, Project aProject,
    User aUser, AnnotationSchemaService aAnnotationService)
  throws IOException
{
  aTagSet.setCreateTag(aExTagSet.isCreateTag());
  aTagSet.setDescription(aExTagSet.getDescription());
  aTagSet.setLanguage(aExTagSet.getLanguage());
  aTagSet.setName(aExTagSet.getName());
  aTagSet.setProject(aProject);
  aAnnotationService.createTagSet(aTagSet);
  for (ExportedTag exTag : aExTagSet.getTags()) {
    // do not duplicate tag
    if (aAnnotationService.existsTag(exTag.getName(), aTagSet)) {
      continue;
    }
    Tag tag = new Tag();
    tag.setDescription(exTag.getDescription());
    tag.setTagSet(aTagSet);
    tag.setName(exTag.getName());
    aAnnotationService.createTag(tag);
  }
}
origin: de.tudarmstadt.ukp.clarin.webanno/webanno-api-dao

private static TagSet replaceTagSet(Project project,
    ExportedTagSet importedTagSet,
    AnnotationSchemaService aAnnotationService)
  throws IOException
{
  String importedTagSetName = importedTagSet.getName();
  de.tudarmstadt.ukp.clarin.webanno.model.TagSet tagsetInUse = aAnnotationService
      .getTagSet(importedTagSetName, project);
  // Remove all tags associated with Tagset
  aAnnotationService.removeAllTags(tagsetInUse);
  // Copy and update TagSet Information from imported tagset
  tagsetInUse.setDescription(importedTagSet.getDescription());
  tagsetInUse.setName(importedTagSetName);
  tagsetInUse.setLanguage(importedTagSet.getLanguage());
  tagsetInUse.setProject(project);
  aAnnotationService.createTagSet(tagsetInUse);
  // Add all tags from imported tagset
  for (ExportedTag tag : importedTagSet.getTags()) {
    Tag newTag = new Tag();
    newTag.setDescription(tag.getDescription());
    newTag.setName(tag.getName());
    newTag.setTagSet(tagsetInUse);
    aAnnotationService.createTag(newTag);
  }
  
  return tagsetInUse;
}

origin: webanno/webanno

private static TagSet replaceTagSet(Project project,
    ExportedTagSet importedTagSet,
    AnnotationSchemaService aAnnotationService)
  throws IOException
{
  String importedTagSetName = importedTagSet.getName();
  de.tudarmstadt.ukp.clarin.webanno.model.TagSet tagsetInUse = aAnnotationService
      .getTagSet(importedTagSetName, project);
  // Remove all tags associated with Tagset
  aAnnotationService.removeAllTags(tagsetInUse);
  // Copy and update TagSet Information from imported tagset
  tagsetInUse.setDescription(importedTagSet.getDescription());
  tagsetInUse.setName(importedTagSetName);
  tagsetInUse.setLanguage(importedTagSet.getLanguage());
  tagsetInUse.setProject(project);
  aAnnotationService.createTagSet(tagsetInUse);
  // Add all tags from imported tagset
  for (ExportedTag tag : importedTagSet.getTags()) {
    Tag newTag = new Tag();
    newTag.setDescription(tag.getDescription());
    newTag.setName(tag.getName());
    newTag.setTagSet(tagsetInUse);
    aAnnotationService.createTag(newTag);
  }
  
  return tagsetInUse;
}

origin: de.tudarmstadt.ukp.clarin.webanno/webanno-api-dao

  private void importTagSet(TagSet aTagSet, ExportedTagSet aExTagSet, Project aProject)
    throws IOException
  {
    // aTagSet is a parameter because we want to use this also in the project settings
    // panel and have the ability there to merge imported tags into an existing tagset
    aTagSet.setCreateTag(aExTagSet.isCreateTag());
    aTagSet.setDescription(aExTagSet.getDescription());
    aTagSet.setLanguage(aExTagSet.getLanguage());
    aTagSet.setName(aExTagSet.getName());
    aTagSet.setProject(aProject);
    annotationService.createTagSet(aTagSet);

    for (ExportedTag exTag : aExTagSet.getTags()) {
      // do not duplicate tag
      if (annotationService.existsTag(exTag.getName(), aTagSet)) {
        continue;
      }
      Tag tag = new Tag();
      tag.setDescription(exTag.getDescription());
      tag.setTagSet(aTagSet);
      tag.setName(exTag.getName());
      annotationService.createTag(tag);
    }
  }
}
origin: webanno/webanno

  private void importTagSet(TagSet aTagSet, ExportedTagSet aExTagSet, Project aProject)
    throws IOException
  {
    // aTagSet is a parameter because we want to use this also in the project settings
    // panel and have the ability there to merge imported tags into an existing tagset
    aTagSet.setCreateTag(aExTagSet.isCreateTag());
    aTagSet.setDescription(aExTagSet.getDescription());
    aTagSet.setLanguage(aExTagSet.getLanguage());
    aTagSet.setName(aExTagSet.getName());
    aTagSet.setProject(aProject);
    annotationService.createTagSet(aTagSet);

    for (ExportedTag exTag : aExTagSet.getTags()) {
      // do not duplicate tag
      if (annotationService.existsTag(exTag.getName(), aTagSet)) {
        continue;
      }
      Tag tag = new Tag();
      tag.setDescription(exTag.getDescription());
      tag.setTagSet(aTagSet);
      tag.setName(exTag.getName());
      annotationService.createTag(tag);
    }
  }
}
origin: webanno/webanno

public static TagSet createTagSet(Project project,
    ExportedTagSet importedTagSet,
    AnnotationSchemaService aAnnotationService)
  throws IOException
{
  String importedTagSetName = importedTagSet.getName();
  if (aAnnotationService.existsTagSet(importedTagSetName, project)) {
    // aAnnotationService.removeTagSet(aAnnotationService.getTagSet(
    // importedTagSet.getName(), project));
    // Rename Imported TagSet instead of deleting the old one.
    importedTagSetName = copyTagSetName(aAnnotationService, importedTagSetName, project);
  }
  TagSet newTagSet = new TagSet();
  newTagSet.setDescription(importedTagSet.getDescription());
  newTagSet.setName(importedTagSetName);
  newTagSet.setLanguage(importedTagSet.getLanguage());
  newTagSet.setProject(project);
  newTagSet.setCreateTag(importedTagSet.isCreateTag());
  aAnnotationService.createTagSet(newTagSet);
  for (ExportedTag tag : importedTagSet.getTags()) {
    Tag newTag = new Tag();
    newTag.setDescription(tag.getDescription());
    newTag.setName(tag.getName());
    newTag.setTagSet(newTagSet);
    aAnnotationService.createTag(newTag);
  }
  
  return newTagSet;
}
origin: de.tudarmstadt.ukp.clarin.webanno/webanno-api-dao

public static TagSet createTagSet(Project project,
    ExportedTagSet importedTagSet,
    AnnotationSchemaService aAnnotationService)
  throws IOException
{
  String importedTagSetName = importedTagSet.getName();
  if (aAnnotationService.existsTagSet(importedTagSetName, project)) {
    // aAnnotationService.removeTagSet(aAnnotationService.getTagSet(
    // importedTagSet.getName(), project));
    // Rename Imported TagSet instead of deleting the old one.
    importedTagSetName = copyTagSetName(aAnnotationService, importedTagSetName, project);
  }
  TagSet newTagSet = new TagSet();
  newTagSet.setDescription(importedTagSet.getDescription());
  newTagSet.setName(importedTagSetName);
  newTagSet.setLanguage(importedTagSet.getLanguage());
  newTagSet.setProject(project);
  newTagSet.setCreateTag(importedTagSet.isCreateTag());
  aAnnotationService.createTagSet(newTagSet);
  for (ExportedTag tag : importedTagSet.getTags()) {
    Tag newTag = new Tag();
    newTag.setDescription(tag.getDescription());
    newTag.setName(tag.getName());
    newTag.setTagSet(newTagSet);
    aAnnotationService.createTag(newTag);
  }
  
  return newTagSet;
}
de.tudarmstadt.ukp.clarin.webanno.export.modelExportedTagSetgetLanguage

Popular methods of ExportedTagSet

  • <init>
  • getName
  • setDescription
  • setLanguage
  • setName
  • setTags
  • getDescription
  • getTags
  • isCreateTag
  • setCreateTag
  • getTypeName
  • getTypeName

Popular in Java

  • Making http post requests using okhttp
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • scheduleAtFixedRate (ScheduledExecutorService)
  • onRequestPermissionsResult (Fragment)
  • BufferedReader (java.io)
    Wraps an existing Reader and buffers the input. Expensive interaction with the underlying reader is
  • DecimalFormat (java.text)
    A concrete subclass of NumberFormat that formats decimal numbers. It has a variety of features desig
  • Collections (java.util)
    This class consists exclusively of static methods that operate on or return collections. It contains
  • TimerTask (java.util)
    The TimerTask class represents a task to run at a specified time. The task may be run once or repeat
  • Modifier (javassist)
    The Modifier class provides static methods and constants to decode class and member access modifiers
  • SAXParseException (org.xml.sax)
    Encapsulate an XML parse error or warning.> This module, both source code and documentation, is in t
  • Top PhpStorm plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now