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

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

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

import java.util.Optional;

public class ConditionalExprMetaModel extends BaseNodeMetaModel {

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

    public PropertyMetaModel conditionPropertyMetaModel;

    public PropertyMetaModel elseExprPropertyMetaModel;

    public PropertyMetaModel thenExprPropertyMetaModel;
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy