You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@uima.apache.org by "Prokopis Prokopidis (JIRA)" <ui...@incubator.apache.org> on 2010/03/25 13:24:27 UTC

[jira] Created: (UIMA-1750) Tutorial and Developers' Guides: setActionOnMaxError

Tutorial and Developers' Guides: setActionOnMaxError
----------------------------------------------------

                 Key: UIMA-1750
                 URL: https://issues.apache.org/jira/browse/UIMA-1750
             Project: UIMA
          Issue Type: Bug
          Components: Documentation
            Reporter: Prokopis Prokopidis
            Priority: Minor


In "UIMA Tutorial and Developer's guide", section 3.3.2 "Configuring a Collection Processing Engine Descriptor Programmatically", the example code contains a repetition of the setActionOnMaxError method call:

{code::borderStyle=solid}

//Continue, despite errors and skip bad Cas
personTitleProcessor.setActionOnMaxError("terminate");
...
//  Define and add CAS Consumer
CpeIntegratedCasProcessor consumerProcessor = 
CpeDescriptorFactory.produceCasProcessor("Printer");
consumerProcessor.setDescriptor([descriptor]);

//Define batch size
consumerProcessor.setBatchSize(100);

//Terminate CPE on max errors
personTitleProcessor.setActionOnMaxError("terminate");

{code}

The first instance seems wrongly commented, while the second wrongly placed.



-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.