source: gs3-extensions/atea-nlp-tools/trunk/src/ocr/src/main/java/org/atea/nlptools/ocr/abstractions/objects/IOcrOptions.java@ 35733

Last change on this file since 35733 was 35733, checked in by cstephen, 2 years ago

Add OCR servlet

File size: 400 bytes
Line 
1package org.atea.nlptools.ocr.abstractions.objects;
2
3/**
4 * Represents a marker interface for OCR options.
5 */
6public interface IOcrOptions
7{
8 /**
9 * Gets the language that should be used.
10 * @return The language string.
11 */
12 String getLanguage();
13
14 /**
15 * Sets the language that should be used.
16 * @param value The language.
17 */
18 void setLanguage(String value);
19}
Note: See TracBrowser for help on using the repository browser.