org.pkl.thirdparty.commonmark.internal.BlockContinueImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pkl-tools Show documentation
Show all versions of pkl-tools Show documentation
Fat Jar containing pkl-cli, pkl-codegen-java, pkl-codegen-kotlin, pkl-config-java, pkl-core, pkl-doc, and their shaded third-party dependencies.
package org.pkl.thirdparty.commonmark.internal;
import org.pkl.thirdparty.commonmark.parser.block.BlockContinue;
public class BlockContinueImpl extends BlockContinue {
private final int newIndex;
private final int newColumn;
private final boolean finalize;
public BlockContinueImpl(int newIndex, int newColumn, boolean finalize) {
this.newIndex = newIndex;
this.newColumn = newColumn;
this.finalize = finalize;
}
public int getNewIndex() {
return newIndex;
}
public int getNewColumn() {
return newColumn;
}
public boolean isFinalize() {
return finalize;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy