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

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

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

import java.util.Optional;

public class CatchClauseMetaModel extends BaseNodeMetaModel {

    CatchClauseMetaModel(Optional superBaseNodeMetaModel) {
        super(superBaseNodeMetaModel, com.github.javaparser.ast.stmt.CatchClause.class, "CatchClause", "com.github.javaparser.ast.stmt", false, false);
    }

    public PropertyMetaModel bodyPropertyMetaModel;

    public PropertyMetaModel parameterPropertyMetaModel;
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy