blob: 693a7c73786bf7f13872273603019051c618a37c [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.uima.taeconfigurator.editors.ui;
import java.io.IOException;
import org.apache.uima.UIMAFramework;
import org.apache.uima.cas.CAS;
import org.apache.uima.resource.ResourceInitializationException;
import org.apache.uima.resource.metadata.Import;
import org.apache.uima.resource.metadata.TypePriorities;
import org.apache.uima.taeconfigurator.editors.MultiPageEditor;
import org.apache.uima.util.InvalidXMLException;
import org.apache.uima.util.XMLInputSource;
import org.eclipse.swt.widgets.Composite;
/**
*/
public class TypePriorityImportSection extends ImportSection {
public TypePriorityImportSection(MultiPageEditor editor, Composite parent) {
super(editor, parent, "Type Priority Imports",
"The following type priority imports are included as part of the type priorities:");
}
// **************************************
// * Code to support type import section
// **************************************
protected boolean isAppropriate() {
return true; // always show
}
/**
* used when hovering
*/
protected String getDescriptionFromImport(String source) throws InvalidXMLException, IOException {
TypePriorities parsedImportItem = UIMAFramework.getXMLParser().parseTypePriorities(
new XMLInputSource(source));
return parsedImportItem.getDescription();
}
protected Import[] getModelImportArray() {
return getTypePriorities().getImports();
}
protected void setModelImportArray(Import[] imports) {
getTypePriorities().setImports(imports);
}
protected void clearModelBaseValue() {
getTypePriorities().setPriorityLists(typePriorityList0);
}
// indexes are checked and merged when the CAS is built
protected boolean isValidImport(String title, String message) {
CAS savedCAS = editor.getCurrentView();
TypePriorities savedTP = editor.getMergedTypePriorities();
if (null != savedTP)
savedTP = (TypePriorities) savedTP.clone();
try {
editor.setMergedTypePriorities();
editor.descriptorCAS.validate();
} catch (ResourceInitializationException e1) {
revertMsg(title, message, editor.getMessagesToRootCause(e1));
editor.setMergedTypePriorities(savedTP);
editor.descriptorCAS.set(savedCAS);
return false;
}
return true;
}
protected void finishImportChangeAction() {
}
}