Home | History | Annotate | Download | only in metamodel
      1 package com.github.javaparser.metamodel;
      2 
      3 import java.util.Optional;
      4 
      5 public class ExplicitConstructorInvocationStmtMetaModel extends StatementMetaModel {
      6 
      7     ExplicitConstructorInvocationStmtMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) {
      8         super(superBaseNodeMetaModel, com.github.javaparser.ast.stmt.ExplicitConstructorInvocationStmt.class, "ExplicitConstructorInvocationStmt", "com.github.javaparser.ast.stmt", false, false);
      9     }
     10 
     11     public PropertyMetaModel argumentsPropertyMetaModel;
     12 
     13     public PropertyMetaModel expressionPropertyMetaModel;
     14 
     15     public PropertyMetaModel isThisPropertyMetaModel;
     16 
     17     public PropertyMetaModel typeArgumentsPropertyMetaModel;
     18 
     19     public PropertyMetaModel usingDiamondOperatorPropertyMetaModel;
     20 }
     21