Examples of traitIpDimensionMax()


Examples of org.axsl.fo.fo.Table.traitIpDimensionMax()

        int optIPD;
        int minIPD;
        int maxIPD;

        final boolean bHasProportionalUnits = totalTableUnits > 0.0;
        if (table.traitIpDimensionMax(this) >= 0) {
            maxIPD = table.traitIpDimensionMax(this);
        } else {
            maxIPD = maxAllocationIPD;
        }
View Full Code Here

Examples of org.axsl.fo.fo.Table.traitIpDimensionMax()

        int minIPD;
        int maxIPD;

        final boolean bHasProportionalUnits = totalTableUnits > 0.0;
        if (table.traitIpDimensionMax(this) >= 0) {
            maxIPD = table.traitIpDimensionMax(this);
        } else {
            maxIPD = maxAllocationIPD;
        }

        if (table.traitIpDimensionOpt(this) < 0) {
View Full Code Here

Examples of org.axsl.fo.fo.Table.traitIpDimensionMax()

            minIPD = table.traitIpDimensionMin(this);
        }

        if (bHasProportionalUnits && optIPD < 0) {
            if (minIPD > 0) {
                if (table.traitIpDimensionMax(this) >= 0) {
                    optIPD = (minIPD + maxIPD) / 2;
                } else {
                    optIPD = minIPD;
                }
            } else if (table.traitIpDimensionMax(this) >= 0) {
View Full Code Here

Examples of org.axsl.fo.fo.Table.traitIpDimensionMax()

                if (table.traitIpDimensionMax(this) >= 0) {
                    optIPD = (minIPD + maxIPD) / 2;
                } else {
                    optIPD = minIPD;
                }
            } else if (table.traitIpDimensionMax(this) >= 0) {
                optIPD = maxIPD;
            } else {
                getLogger().error("At least one of minimum, optimum, or "
                        + "maximum IPD must be specified on table.");
                optIPD = maxIPD;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.