Re: Problems with Annotators using a non-default View

2014-03-26 Thread Chuong Ngo
full pipeline and does not specify any input or output sofas. Previously, A was not included in the C pipeline and was called separately. We are trying to integrate A into C to simplify things. Thanks in advance. Chuong Ngo On Wed, Mar 26, 2014 at 6:16 PM, Eddie Epstein wrote: > Would be

Problems with Annotators using a non-default View

2014-03-26 Thread Chuong Ngo
I have two annotators that are being used via JMS calls in UIMA AS. The first annotator creates a separate view that then needs to be read by the second annotator. The view is created with: String destinationId = "SomeView"; JCas targetView = aJCas.createView(destinationId); String text = "hold

Re: Getting all Features for any Annotator

2013-07-12 Thread Chuong Ngo
ation. > > There is no need to resort to reflection. > > You may want to have a look at the source code of the CasCopier class too. > > -- Richard > > Am 12.07.2013 um 20:16 schrieb Chuong Ngo : > > > Is there a way to get all the features for an annotator, no matter

Getting all Features for any Annotator

2013-07-12 Thread Chuong Ngo
while an organization may have type, health, etc... Is there another way to do that besides casting each one to a predetermined type and then using the getters to extract the feature values? Thanks in advance. Chuong Ngo