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

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

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

origin: de.tudarmstadt.ukp.clarin.webanno/webanno-ui-project

ExportedTagSet exTagSet = new ExportedTagSet();
exTagSet.setDescription(tagSet.getDescription());
exTagSet.setLanguage(tagSet.getLanguage());
exTagSet.setName(tagSet.getName());
origin: webanno/webanno

ExportedTagSet exTagSet = new ExportedTagSet();
exTagSet.setDescription(tagSet.getDescription());
exTagSet.setLanguage(tagSet.getLanguage());
exTagSet.setName(tagSet.getName());
origin: de.tudarmstadt.ukp.clarin.webanno/webanno-api-dao

@Override
public void exportData(ProjectExportRequest aRequest, ExportedProject aExProject, File aStage)
  throws Exception
{
  List<ExportedTagSet> extTagSets = new ArrayList<>();
  for (TagSet tagSet : annotationService.listTagSets(aRequest.getProject())) {
    ExportedTagSet exTagSet = new ExportedTagSet();
    exTagSet.setCreateTag(tagSet.isCreateTag());
    exTagSet.setDescription(tagSet.getDescription());
    exTagSet.setLanguage(tagSet.getLanguage());
    exTagSet.setName(tagSet.getName());
    
    List<ExportedTag> exTags = new ArrayList<>();
    for (Tag tag : annotationService.listTags(tagSet)) {
      ExportedTag exTag = new ExportedTag();
      exTag.setDescription(tag.getDescription());
      exTag.setName(tag.getName());
      exTags.add(exTag);
    }
    exTagSet.setTags(exTags);
    extTagSets.add(exTagSet);
  }
  aExProject.setTagSets(extTagSets);
}

origin: webanno/webanno

@Override
public void exportData(ProjectExportRequest aRequest, ExportedProject aExProject, File aStage)
  throws Exception
{
  List<ExportedTagSet> extTagSets = new ArrayList<>();
  for (TagSet tagSet : annotationService.listTagSets(aRequest.getProject())) {
    ExportedTagSet exTagSet = new ExportedTagSet();
    exTagSet.setCreateTag(tagSet.isCreateTag());
    exTagSet.setDescription(tagSet.getDescription());
    exTagSet.setLanguage(tagSet.getLanguage());
    exTagSet.setName(tagSet.getName());
    
    List<ExportedTag> exTags = new ArrayList<>();
    for (Tag tag : annotationService.listTags(tagSet)) {
      ExportedTag exTag = new ExportedTag();
      exTag.setDescription(tag.getDescription());
      exTag.setName(tag.getName());
      exTags.add(exTag);
    }
    exTagSet.setTags(exTags);
    extTagSets.add(exTagSet);
  }
  aExProject.setTagSets(extTagSets);
}

origin: webanno/webanno

ExportedTagSet exTagSet = new ExportedTagSet();
exTagSet.setDescription(tagSet.getDescription());
exTagSet.setLanguage(tagSet.getLanguage());
exTagSet.setName(tagSet.getName());
exTagSet.setCreateTag(tagSet.isCreateTag());
origin: de.tudarmstadt.ukp.clarin.webanno/webanno-export

ExportedTagSet exTagSet = new ExportedTagSet();
exTagSet.setDescription(tagSet.getDescription());
exTagSet.setLanguage(tagSet.getLanguage());
exTagSet.setName(tagSet.getName());
exTagSet.setCreateTag(tagSet.isCreateTag());
origin: de.tudarmstadt.ukp.clarin.webanno/webanno-api-dao

ExportedTagSet exTagSet = new ExportedTagSet();
exTagSet.setDescription(tagSet.getDescription());
exTagSet.setLanguage(tagSet.getLanguage());
exTagSet.setName(tagSet.getName());
exTagSet.setCreateTag(tagSet.isCreateTag());
origin: webanno/webanno

ExportedTagSet exTagSet = new ExportedTagSet();
exTagSet.setDescription(tagSet.getDescription());
exTagSet.setLanguage(tagSet.getLanguage());
exTagSet.setName(tagSet.getName());
exTagSet.setCreateTag(tagSet.isCreateTag());
de.tudarmstadt.ukp.clarin.webanno.export.modelExportedTagSetsetLanguage

Popular methods of ExportedTagSet

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

Popular in Java

  • Running tasks concurrently on multiple threads
  • onCreateOptionsMenu (Activity)
  • scheduleAtFixedRate (Timer)
  • addToBackStack (FragmentTransaction)
  • File (java.io)
    An "abstract" representation of a file system entity identified by a pathname. The pathname may be a
  • Format (java.text)
    The base class for all formats. This is an abstract base class which specifies the protocol for clas
  • ServletException (javax.servlet)
    Defines a general exception a servlet can throw when it encounters difficulty.
  • JCheckBox (javax.swing)
  • Reflections (org.reflections)
    Reflections one-stop-shop objectReflections scans your classpath, indexes the metadata, allows you t
  • LoggerFactory (org.slf4j)
    The LoggerFactory is a utility class producing Loggers for various logging APIs, most notably for lo
  • Top plugins for Android Studio
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