public interface PrintableCFG
| Modifier and Type | Method and Description |
|---|---|
default void |
forEachPropertyPair(AbstractBlockBase<?> block,
BiConsumer<String,String> action)
Applies
action to all extra property pairs (name, value) of block. |
List<? extends AbstractBlockBase<?>> |
getBlocks() |
List<? extends AbstractBlockBase<?>> getBlocks()
default void forEachPropertyPair(AbstractBlockBase<?> block, BiConsumer<String,String> action)
action to all extra property pairs (name, value) of block.block - a block from getBlocks().action - a consumer.