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

net.sourceforge.pmd.lang.modelica.ast.ASTLanguageSpecification Maven / Gradle / Ivy

The newest version!
/*
 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html
 */

package net.sourceforge.pmd.lang.modelica.ast;

public final class ASTLanguageSpecification extends AbstractModelicaNode {
    private String externalLanguage;

    ASTLanguageSpecification(int id) {
        super(id);
    }

    @Override
    protected  R acceptModelicaVisitor(ModelicaVisitor visitor, P data) {
        return visitor.visit(this, data);
    }

    void setExternalLanguage(String externalLanguage) {
        this.externalLanguage = externalLanguage;
    }

    public String getExternalLanguage() {
        return externalLanguage;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy