use of de.tudarmstadt.ukp.clarin.webanno.api.annotation.model.AnnotatorState in project webanno by webanno.
the class AnnotationDetailEditorPanel method createNewRelationAnnotation.
private void createNewRelationAnnotation(ArcAdapter aAdapter, JCas aJCas) throws AnnotationException {
LOG.trace("createNewRelationAnnotation()");
AnnotatorState state = getModelObject();
Selection selection = state.getSelection();
AnnotationFS originFs = selectByAddr(aJCas, selection.getOrigin());
AnnotationFS targetFs = selectByAddr(aJCas, selection.getTarget());
// Creating a relation
AnnotationFS arc = aAdapter.add(originFs, targetFs, aJCas, state.getWindowBeginOffset(), state.getWindowEndOffset());
selection.selectArc(new VID(arc), originFs, targetFs);
}
use of de.tudarmstadt.ukp.clarin.webanno.api.annotation.model.AnnotatorState in project webanno by webanno.
the class AnnotationDetailEditorPanel method actionDelete.
@Override
public void actionDelete(AjaxRequestTarget aTarget) throws IOException, AnnotationException {
JCas jCas = getEditorCas();
AnnotatorState state = getModelObject();
AnnotationFS fs = selectByAddr(jCas, state.getSelection().getAnnotation().getId());
AnnotationLayer layer = annotationService.getLayer(state.getProject(), fs);
TypeAdapter adapter = annotationService.getAdapter(layer);
if (layer.isReadonly()) {
error("Cannot delete an annotation on a read-only layer.");
aTarget.addChildren(getPage(), IFeedback.class);
return;
}
if (checkAttachStatus(aTarget, state.getProject(), fs).readOnlyAttached) {
error("Cannot delete an annotation to which annotations on read-only layers attach.");
aTarget.addChildren(getPage(), IFeedback.class);
return;
}
deleteAnnotation(jCas, state, fs, layer, adapter);
// Store CAS again
writeEditorCas(jCas);
// Update progress information
int sentenceNumber = getSentenceNumber(jCas, state.getSelection().getBegin());
state.setFocusUnitIndex(sentenceNumber);
state.getDocument().setSentenceAccessed(sentenceNumber);
// Auto-scroll
if (state.getPreferences().isScrollPage()) {
autoScroll(jCas, false);
}
state.rememberFeatures();
info(generateMessage(state.getSelectedAnnotationLayer(), null, true));
state.getSelection().clear();
// after delete will follow annotation
aTarget.add(annotationFeatureForm);
onChange(aTarget);
onDelete(aTarget, fs);
}
use of de.tudarmstadt.ukp.clarin.webanno.api.annotation.model.AnnotatorState in project webanno by webanno.
the class AnnotationDetailEditorPanel method internalCommitAnnotation.
private void internalCommitAnnotation(AjaxRequestTarget aTarget, JCas aJCas) throws AnnotationException, IOException {
AnnotatorState state = getModelObject();
LOG.trace("actionAnnotate() selectedLayer: {}", state.getSelectedAnnotationLayer().getUiName());
LOG.trace("actionAnnotate() defaultLayer: {}", state.getDefaultAnnotationLayer().getUiName());
if (state.getSelectedAnnotationLayer() == null) {
error("No layer is selected. First select a layer.");
aTarget.addChildren(getPage(), IFeedback.class);
return;
}
if (state.getSelectedAnnotationLayer().isReadonly()) {
error("Layer is not editable.");
aTarget.addChildren(getPage(), IFeedback.class);
return;
}
// Verify if input is valid according to tagset
LOG.trace("actionAnnotate() verifying feature values in editors");
List<FeatureState> featureStates = getModelObject().getFeatureStates();
for (FeatureState featureState : featureStates) {
AnnotationFeature feature = featureState.feature;
if (CAS.TYPE_NAME_STRING.equals(feature.getType())) {
String value = (String) featureState.value;
// Check if tag is necessary, set, and correct
if (value != null && feature.getTagset() != null && !feature.getTagset().isCreateTag() && !annotationService.existsTag(value, feature.getTagset())) {
error("[" + value + "] is not in the tag list. Please choose from the existing tags");
return;
}
}
}
// #186 - After filling a slot, the annotation detail panel is not updated
aTarget.add(annotationFeatureForm.getFeatureEditorPanel());
TypeAdapter adapter = annotationService.getAdapter(state.getSelectedAnnotationLayer());
// If this is an annotation creation action, create the annotation
if (state.getSelection().getAnnotation().isNotSet()) {
// Load the feature editors with the remembered values (if any)
loadFeatureEditorModels(aJCas, aTarget);
createNewAnnotation(aTarget, adapter, aJCas);
}
// Update the features of the selected annotation from the values presently in the
// feature editors
writeFeatureEditorModelsToCas(adapter, aJCas);
// Update progress information
LOG.trace("actionAnnotate() updating progress information");
int sentenceNumber = getSentenceNumber(aJCas, state.getSelection().getBegin());
state.setFocusUnitIndex(sentenceNumber);
state.getDocument().setSentenceAccessed(sentenceNumber);
// persist changes
writeEditorCas(aJCas);
// Remember the current feature values independently for spans and relations
LOG.trace("actionAnnotate() remembering feature editor values");
state.rememberFeatures();
// Loading feature editor values from CAS
loadFeatureEditorModels(aJCas, aTarget);
// onAnnotate callback
LOG.trace("onAnnotate()");
onAnnotate(aTarget);
}
use of de.tudarmstadt.ukp.clarin.webanno.api.annotation.model.AnnotatorState in project webanno by webanno.
the class AnnotationDetailEditorPanel method actionReverse.
@Override
public void actionReverse(AjaxRequestTarget aTarget) throws IOException, AnnotationException {
aTarget.addChildren(getPage(), IFeedback.class);
JCas jCas = getEditorCas();
AnnotatorState state = getModelObject();
AnnotationFS idFs = selectByAddr(jCas, state.getSelection().getAnnotation().getId());
jCas.removeFsFromIndexes(idFs);
AnnotationFS originFs = selectByAddr(jCas, state.getSelection().getOrigin());
AnnotationFS targetFs = selectByAddr(jCas, state.getSelection().getTarget());
List<FeatureState> featureStates = getModelObject().getFeatureStates();
TypeAdapter adapter = annotationService.getAdapter(state.getSelectedAnnotationLayer());
if (adapter instanceof ArcAdapter) {
// If no features, still create arc #256
AnnotationFS arc = ((ArcAdapter) adapter).add(targetFs, originFs, jCas, state.getWindowBeginOffset(), state.getWindowEndOffset());
state.getSelection().setAnnotation(new VID(getAddr(arc)));
for (FeatureState featureState : featureStates) {
adapter.setFeatureValue(state, jCas, getAddr(arc), featureState.feature, featureState.value);
}
} else {
error("chains cannot be reversed");
return;
}
// persist changes
writeEditorCas(jCas);
int sentenceNumber = getSentenceNumber(jCas, originFs.getBegin());
state.setFocusUnitIndex(sentenceNumber);
state.getDocument().setSentenceAccessed(sentenceNumber);
if (state.getPreferences().isScrollPage()) {
autoScroll(jCas, false);
}
info("The arc has been reversed");
state.rememberFeatures();
// in case the user re-reverse it
state.getSelection().reverseArc();
onChange(aTarget);
}
use of de.tudarmstadt.ukp.clarin.webanno.api.annotation.model.AnnotatorState in project webanno by webanno.
the class AnnotationDetailEditorPanel method createNewChainLinkAnnotation.
private void createNewChainLinkAnnotation(ChainAdapter aAdapter, JCas aJCas) {
LOG.trace("createNewChainLinkAnnotation()");
AnnotatorState state = getModelObject();
Selection selection = state.getSelection();
AnnotationFS originFs = selectByAddr(aJCas, selection.getOrigin());
AnnotationFS targetFs = selectByAddr(aJCas, selection.getTarget());
// Creating a new chain link
int addr = aAdapter.addArc(aJCas, originFs, targetFs);
selection.selectArc(new VID(addr), originFs, targetFs);
}
Aggregations