All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.daisy.dotify.api.translator.TextProperties Maven / Gradle / Ivy

package org.daisy.dotify.api.translator;

import java.util.Optional;

/**
 * Provides an interface for a text to translate. Note that this interface does
 * not define any way to extract the text.
 *
 * @author Joel Håkansson
 * @see ResolvableText
 */
interface TextProperties {
// Note that this interface is not public. This is done for two reasons:
//  1.  There's no need to expose this interface by itself.
//  2.  The name clashes with TextProperties in the formatter API and if a better name
//      should come to mind, it is possible to change it later without compatibility
//      concerns.

    /**
     * 

Gets the locale for the text, if specified.

* *

Note that this method returns the language * that the text is written in. It does not imply association with * a particular translator or braille code.

* * @return an optional containing the locale, never null */ public Optional getLocale(); /** * Returns true if the text should be hyphenated. * * @return true if the text should be hyphenated, false otherwise */ public boolean shouldHyphenate(); /** * Returns true if the text should mark capital letters. * * @return true if the capital letters should be marked, false otherwise */ public boolean shouldMarkCapitalLetters(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy