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

net.sourceforge.pmd.lang.modelica.ast.ASTWithinClause 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 ASTWithinClause extends AbstractModelicaNode {
    ASTWithinClause(int id) {
        super(id);
    }

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

    public String getName() {
        ASTName name = firstChild(ASTName.class);
        if (name != null) {
            return name.getName();
        }
        return "";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy