Author: joern
Date: Mon Oct 4 15:02:09 2010
New Revision: 1004274
URL: http://svn.apache.org/viewvc?rev=1004274&view=rev
Log:
UIMA-1889 Added the annotation type to the list
Modified:
uima/uimaj/trunk/uimaj-ep-cas-editor/src/main/java/org/apache/uima/caseditor/ui/property/AnnotationPropertyPage.java
Modified:
uima/uimaj/trunk/uimaj-ep-cas-editor/src/main/java/org/apache/uima/caseditor/ui/property/AnnotationPropertyPage.java
URL:
http://svn.apache.org/viewvc/uima/uimaj/trunk/uimaj-ep-cas-editor/src/main/java/org/apache/uima/caseditor/ui/property/AnnotationPropertyPage.java?rev=1004274&r1=1004273&r2=1004274&view=diff
==============================================================================
---
uima/uimaj/trunk/uimaj-ep-cas-editor/src/main/java/org/apache/uima/caseditor/ui/property/AnnotationPropertyPage.java
(original)
+++
uima/uimaj/trunk/uimaj-ep-cas-editor/src/main/java/org/apache/uima/caseditor/ui/property/AnnotationPropertyPage.java
Mon Oct 4 15:02:09 2010
@@ -211,7 +211,9 @@ public abstract class AnnotationProperty
// inserts objects with type Type
mTypeList.add(type);
}
-
+
+ mTypeList.add(annotationType);
+
mTypeList.addSelectionChangedListener(new ISelectionChangedListener() {
public void selectionChanged(SelectionChangedEvent event) {
@@ -219,6 +221,7 @@ public abstract class AnnotationProperty
}
});
+
Composite settingsComposite = new Composite(base, SWT.NONE);
GridLayout settingsLayout = new GridLayout();