aboutsummaryrefslogtreecommitdiffstats
path: root/javaparser-core/src/main/java/com/github/javaparser/metamodel/CatchClauseMetaModel.java
blob: 34cd102b06a607e1517090c8b3c907b88ecac255 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.github.javaparser.metamodel;

import java.util.Optional;

public class CatchClauseMetaModel extends NodeMetaModel {

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

    public PropertyMetaModel bodyPropertyMetaModel;

    public PropertyMetaModel parameterPropertyMetaModel;
}