Tabnine Logo
de.tudarmstadt.ukp.clarin.webanno.ui.annotation.component
Code IndexAdd Tabnine to your IDE (free)

How to use de.tudarmstadt.ukp.clarin.webanno.ui.annotation.component

Best Java code snippets using de.tudarmstadt.ukp.clarin.webanno.ui.annotation.component (Showing top 16 results out of 315)

origin: webanno/webanno

@SuppressWarnings("unchecked")
public IModel<AnnotatorState> getModel()
{
  return (IModel<AnnotatorState>) getDefaultModel();
}
origin: webanno/webanno

public AnnotatorState getModelObject()
{
  return (AnnotatorState) getDefaultModelObject();
}
origin: webanno/webanno

public AnnotatorState getModelObject()
{
  return (AnnotatorState) getDefaultModelObject();
}
origin: webanno/webanno

curationContainer.setBratAnnotatorModel(getModelObject());
add(documentNamePanel = new DocumentNamePanel("documentNamePanel", getModel()));
finishDocumentIcon = new FinishImage("finishImage", getModel());
finishDocumentIcon.setOutputMarkupId(true);
finishDocumentLink.add(finishDocumentIcon);
origin: webanno/webanno

finishDocumentIcon = new FinishImage("finishImage", getModel());
finishDocumentIcon.setOutputMarkupId(true);
finishDocumentLink.add(finishDocumentIcon);
origin: de.tudarmstadt.ukp.clarin.webanno/webanno-ui-curation

add(curationPanel);
add(documentNamePanel = new DocumentNamePanel("documentNamePanel", getModel()));
documentNamePanel.setOutputMarkupId(true);
origin: webanno/webanno

private DocumentNamePanel createDocumentInfoLabel()
{
  return new DocumentNamePanel("documentNamePanel", getModel());
}
origin: webanno/webanno

public DocumentNamePanel(String id, final IModel<AnnotatorState> aModel)
{
  super(id, aModel);
  setOutputMarkupId(true);
  add(new Label("doumentName", LambdaModel.of(this::getLabel)).setOutputMarkupId(true));
}

origin: webanno/webanno

public FinishImage(String id, final IModel<AnnotatorState> aModel)
{
  super(id, aModel);
  add(new AttributeModifier("src", LambdaModel.of(() -> {
    if (aModel.getObject().getProject() != null
        && aModel.getObject().getDocument() != null) {
      if (isFinished(aModel, aModel.getObject().getUser(), documentService)) {
        return "images/accept.png";
      }
      else {
        return "images/inprogress.png";
      }
    }
    else {
      return "images/inprogress.png";
    }
  })));
}
origin: webanno/webanno

AnnotatorState state = getModelObject();
if (RuntimeConfigurationType.DEVELOPMENT.equals(getApplication().getConfigurationType())) {
  sb.append(" (");
  if (state.getProject() != null) {
origin: webanno/webanno

public void setModel(IModel<AnnotatorState> aModel)
{
  setDefaultModel(aModel);
}
origin: webanno/webanno

public void setModelObject(AnnotatorState aModel)
{
  setDefaultModelObject(aModel);
}
origin: de.tudarmstadt.ukp.clarin.webanno/webanno-ui-automation

curationContainer.setBratAnnotatorModel(getModelObject());
add(documentNamePanel = new DocumentNamePanel("documentNamePanel", getModel()));
finishDocumentIcon = new FinishImage("finishImage", getModel());
finishDocumentIcon.setOutputMarkupId(true);
finishDocumentLink.add(finishDocumentIcon);
origin: webanno/webanno

finishDocumentIcon = new FinishImage("finishImage", getModel());
finishDocumentIcon.setOutputMarkupId(true);
finishDocumentLink.add(finishDocumentIcon);
origin: webanno/webanno

add(curationPanel);
add(documentNamePanel = new DocumentNamePanel("documentNamePanel", getModel()));
documentNamePanel.setOutputMarkupId(true);
origin: webanno/webanno

private DocumentNamePanel createDocumentInfoLabel()
{
  return new DocumentNamePanel("documentNamePanel", getModel());
}
de.tudarmstadt.ukp.clarin.webanno.ui.annotation.component

Most used classes

  • DocumentNamePanel
  • FinishImage
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