com.strobel.decompiler.languages.java.ast.MethodDeclaration Maven / Gradle / Ivy
/*
* MethodDeclaration.java
*
* Copyright (c) 2013 Mike Strobel
*
* This source code is based on Mono.Cecil from Jb Evain, Copyright (c) Jb Evain;
* and ILSpy/ICSharpCode from SharpDevelop, Copyright (c) AlphaSierraPapa.
*
* This source code is subject to terms and conditions of the Apache License, Version 2.0.
* A copy of the license can be found in the License.html file at the root of this distribution.
* By using this source code in any fashion, you are agreeing to be bound by the terms of the
* Apache License, Version 2.0.
*
* You must not remove this notice, or any other, from this software.
*/
package com.strobel.decompiler.languages.java.ast;
import com.strobel.decompiler.languages.EntityType;
import com.strobel.decompiler.patterns.INode;
import com.strobel.decompiler.patterns.Match;
import com.strobel.decompiler.patterns.Role;
public class MethodDeclaration extends EntityDeclaration {
public final static Role DEFAULT_VALUE_ROLE = new Role<>("DefaultValue", Expression.class, Expression.NULL);
public final static TokenRole DEFAULT_KEYWORD = new TokenRole("default", TokenRole.FLAG_KEYWORD);
public final static TokenRole THROWS_KEYWORD = new TokenRole("throws", TokenRole.FLAG_KEYWORD);
public final AstType getPrivateImplementationType() {
return getChildByRole(PRIVATE_IMPLEMENTATION_TYPE_ROLE);
}
public final void setPrivateImplementationType(final AstType type) {
setChildByRole(PRIVATE_IMPLEMENTATION_TYPE_ROLE, type);
}
public final Expression getDefaultValue() {
return getChildByRole(DEFAULT_VALUE_ROLE);
}
public final void setDefaultValue(final Expression value) {
setChildByRole(DEFAULT_VALUE_ROLE, value);
}
public final AstNodeCollection getThrownTypes() {
return getChildrenByRole(Roles.THROWN_TYPE);
}
public final AstNodeCollection getDeclaredTypes() {
return getChildrenByRole(Roles.LOCAL_TYPE_DECLARATION);
}
public final AstNodeCollection getTypeParameters() {
return getChildrenByRole(Roles.TYPE_PARAMETER);
}
public final AstNodeCollection getParameters() {
return getChildrenByRole(Roles.PARAMETER);
}
public final BlockStatement getBody() {
return getChildByRole(Roles.BODY);
}
public final void setBody(final BlockStatement value) {
setChildByRole(Roles.BODY, value);
}
public final JavaTokenNode getLeftParenthesisToken() {
return getChildByRole(Roles.LEFT_PARENTHESIS);
}
public final JavaTokenNode getRightParenthesisToken() {
return getChildByRole(Roles.RIGHT_PARENTHESIS);
}
@Override
public EntityType getEntityType() {
return EntityType.METHOD;
}
@Override
public R acceptVisitor(final IAstVisitor super T, ? extends R> visitor, final T data) {
return visitor.visitMethodDeclaration(this, data);
}
@Override
public boolean matches(final INode other, final Match match) {
if (other instanceof MethodDeclaration) {
final MethodDeclaration otherDeclaration = (MethodDeclaration) other;
return !otherDeclaration.isNull() &&
matchString(getName(), otherDeclaration.getName()) &&
matchAnnotationsAndModifiers(otherDeclaration, match) &&
getPrivateImplementationType().matches(otherDeclaration.getPrivateImplementationType(), match) &&
getTypeParameters().matches(otherDeclaration.getTypeParameters(), match) &&
getReturnType().matches(otherDeclaration.getReturnType(), match) &&
getParameters().matches(otherDeclaration.getParameters(), match) &&
getBody().matches(otherDeclaration.getBody(), match);
}
return false;
}
}