Examples of MappingOptionTriplet


Examples of org.apache.fop.afp.modca.triplets.MappingOptionTriplet

     * Sets the mapping option
     *
     * @param optionValue the mapping option value
     */
    public void setMappingOption(byte optionValue) {
        addTriplet(new MappingOptionTriplet(optionValue));
    }
View Full Code Here

Examples of org.apache.fop.afp.modca.triplets.MappingOptionTriplet

    /**
     * Constructor for the Map Image Object.
     * @param mappingOption the mapping option (see {@link MappingOptionTriplet}.*)
     */
    public MapImageObject(byte mappingOption) {
        addTriplet(new MappingOptionTriplet(mappingOption));
    }
View Full Code Here

Examples of org.apache.fop.afp.modca.triplets.MappingOptionTriplet

     * Sets the mapping option
     *
     * @param optionValue the mapping option value
     */
    public void setMappingOption(byte optionValue) {
        addTriplet(new MappingOptionTriplet(optionValue));
    }
View Full Code Here

Examples of org.apache.fop.afp.modca.triplets.MappingOptionTriplet

    /**
     * Constructor for the Map Image Object.
     * @param mappingOption the mapping option (see {@link MappingOptionTriplet}.*)
     */
    public MapImageObject(byte mappingOption) {
        addTriplet(new MappingOptionTriplet(mappingOption));
    }
View Full Code Here

Examples of org.apache.fop.afp.modca.triplets.MappingOptionTriplet

     * Main constructor
     *
     * @param optionValue the mapping option value
     */
    public MapContainerData(byte optionValue) {
        super.addTriplet(new MappingOptionTriplet(optionValue));
    }
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.