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

com.github.javaparser.metamodel.BinaryExprMetaModel Maven / Gradle / Ivy

The newest version!
package com.github.javaparser.metamodel;

import java.util.Optional;

public class BinaryExprMetaModel extends BaseNodeMetaModel {

    BinaryExprMetaModel(Optional superBaseNodeMetaModel) {
        super(superBaseNodeMetaModel, com.github.javaparser.ast.expr.BinaryExpr.class, "BinaryExpr", "com.github.javaparser.ast.expr", false, false);
    }

    public PropertyMetaModel leftPropertyMetaModel;

    public PropertyMetaModel operatorPropertyMetaModel;

    public PropertyMetaModel rightPropertyMetaModel;
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy