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

com.github.leeonky.dal.ast.node.text.TextBlockNotationNode Maven / Gradle / Ivy

package com.github.leeonky.dal.ast.node.text;

import com.github.leeonky.dal.ast.node.DALNode;

import java.util.List;

public class TextBlockNotationNode extends DALNode {
    private final String notation;

    public TextBlockNotationNode(List ls) {
        notation = String.join("", ls);
    }

    @Override
    public String inspect() {
        return notation;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy