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

org.daisy.dotify.api.formatter.NoField Maven / Gradle / Ivy

There is a newer version: 1.0.7
Show newest version
package org.daisy.dotify.api.formatter;

/**
 * NoField represents the absence of a field in a header or
 * footer. Text from the page body "flows into" the header or footer
 * at this position.
 */
public class NoField implements Field {

    private NoField() {
    }

    private static final NoField instance = new NoField();

    /**
     * Gets the singleton instance.
     *
     * @return returns the singleton instance
     */
    public static NoField getInstance() {
        return instance;
    }

    @Override
    public String getTextStyle() {
        return null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy