com.github.javaparser.metamodel.UnaryExprMetaModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javaparser-metamodel Show documentation
Show all versions of javaparser-metamodel Show documentation
A description of all the types nodes that can appear in the AST
The newest version!
package com.github.javaparser.metamodel;
import java.util.Optional;
public class UnaryExprMetaModel extends BaseNodeMetaModel {
UnaryExprMetaModel(Optional superBaseNodeMetaModel) {
super(superBaseNodeMetaModel, com.github.javaparser.ast.expr.UnaryExpr.class, "UnaryExpr", "com.github.javaparser.ast.expr", false, false);
}
public PropertyMetaModel expressionPropertyMetaModel;
public PropertyMetaModel operatorPropertyMetaModel;
}