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

org.apache.poi.xwpf.converter.core.openxmlformats.styles.paragraph.ParagraphIndentationFirstLineValueProvider Maven / Gradle / Ivy

package org.apache.poi.xwpf.converter.core.openxmlformats.styles.paragraph;

import java.math.BigInteger;

import org.apache.poi.xwpf.converter.core.utils.DxaUtil;
import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTInd;

public class ParagraphIndentationFirstLineValueProvider
    extends AbstractIndentationParagraphValueProvider
{

    public static final ParagraphIndentationFirstLineValueProvider INSTANCE = new ParagraphIndentationFirstLineValueProvider();

    @Override
    public Float getValue( CTInd ind )
    {
        BigInteger firstLine = ind.getFirstLine();
        if ( firstLine != null )
        {
            return DxaUtil.dxa2points( firstLine );
        }
        return null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy