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

com.dua3.utility.swing.StyledDocumentConversionOption Maven / Gradle / Ivy

There is a newer version: 13.1.1
Show newest version
package com.dua3.utility.swing;

import java.util.function.Consumer;

/**
 * Options controlling the conversion process.
 *
 * @param action the action to perform on the converter
 */
public record StyledDocumentConversionOption(Consumer action) {
    void apply(StyledDocumentConverter converter) {
        action.accept(converter);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy