org.pkl.thirdparty.commonmark.internal.inline.ParsedInlineImpl 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.inline;
import org.pkl.thirdparty.commonmark.node.Node;
import org.pkl.thirdparty.commonmark.parser.beta.ParsedInline;
import org.pkl.thirdparty.commonmark.parser.beta.Position;
public class ParsedInlineImpl implements ParsedInline {
private final Node node;
private final Position position;
public ParsedInlineImpl(Node node, Position position) {
this.node = node;
this.position = position;
}
public Node getNode() {
return node;
}
public Position getPosition() {
return position;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy