File: plugin.xml

package info (click to toggle)
uimaj 2.3.0-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 29,940 kB
  • ctags: 25,579
  • sloc: java: 168,603; xml: 61,927; sh: 470; makefile: 68
file content (113 lines) | stat: -rw-r--r-- 4,931 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
	<!--
	 ***************************************************************
	 * 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.
	 ***************************************************************
	-->
<plugin>
   <extension
         point="org.eclipse.jdt.debug.javaLogicalStructures">
            <javaLogicalStructure
            description="UIMA Annotation"
            subtypes="true"
            type="org.apache.uima.cas.AnnotationFS">
         <variable
               name="CoveredText"
               value="return this.getCoveredText();"/>
         <variable
               name="Features"
               value="return org.apache.uima.cas.impl.DebugFSLogicalStructure.getDebugLogicalStructure_Features(this);"/>
         <variable
               name="SubAnnotations"
               value="return org.apache.uima.cas.impl.DebugFSLogicalStructure.getDebugLogicalStructure_SubAnnotations(this);"/>
      </javaLogicalStructure>
      <javaLogicalStructure
            description="UIMA FeatureStructure"
            subtypes="true"
            type="org.apache.uima.cas.FeatureStructure"
            value="return  org.apache.uima.cas.impl.DebugFSLogicalStructure.getDebugLogicalStructure_FeatureStructure(this);"/>
      <javaLogicalStructure
            description="UIMA Debug Name-Value pair (value only)"
            subtypes="false"
            type="org.apache.uima.cas.impl.DebugNameValuePair"
            value="return getValue();"/>
      <javaLogicalStructure
            description="UIMA CAS"
            subtypes="true"
            type="org.apache.uima.cas.CAS">
         <variable
               name="Sofa"
               value="return new org.apache.uima.cas.impl.DebugFSLogicalStructure.ViewInfo(this);"/>
         <variable
               name="OtherViews"
               value="return org.apache.uima.cas.impl.DebugFSLogicalStructure.getOtherViews(this);"/>
         <variable
               name="Indexes"
               value="return org.apache.uima.cas.impl.DebugFSLogicalStructure.getIndexes(this);"/>
      </javaLogicalStructure>
      <javaLogicalStructure
            description="UIMA JCas"
            subtypes="false"
            type="org.apache.uima.jcas.impl.JCas">
         <variable
               name="Sofa"
               value="return new org.apache.uima.cas.impl.DebugFSLogicalStructure.ViewInfo(this.getCas());"/>
         <variable
               name="OtherViews"
               value="return org.apache.uima.cas.impl.DebugFSLogicalStructure.getOtherViews(this.getCas());"/>
         <variable
               name="Indexes"
               value="return org.apache.uima.cas.impl.DebugFSLogicalStructure.getIndexes(this.getCas());"/>
      </javaLogicalStructure>      
      <javaLogicalStructure
            description="UIMA IndexInfo"
            subtypes="false"
            type="org.apache.uima.cas.impl.DebugFSLogicalStructure$IndexInfo">
         <variable
               name="Name"
               value="return this.indexName;"/>
         <variable
               name="Kind"
               value="return this.getKind();"/>
         <variable
               name="Type"
               value="return this.getType();"/>
         <variable
               name="Contents"
               value="return this.getContents();"/>
         <variable
               name="SubTypes"
               value="return this.getSubTypes();"/>
      </javaLogicalStructure>
      <javaLogicalStructure
            description="UIMA Unexpanded FSs"
            subtypes="false"
            type="org.apache.uima.cas.impl.DebugFSLogicalStructure$UnexpandedFeatureStructures"
            value="return this.getItems();"
       />
           <javaLogicalStructure
            description="UIMA View Info"
            subtypes="false"
            type="org.apache.uima.cas.impl.DebugFSLogicalStructure$ViewInfo"
            value="return this.getSofa();"/>  
   </extension>
   <extension
         point="org.eclipse.ui.startup">
   </extension>
</plugin>