/******************************************************************************* * Copyright (c) 2015 Jeff Martin. * All rights reserved. This program and the accompanying materials * are made available under the terms of the GNU Lesser General Public * License v3.0 which accompanies this distribution, and is available at * http://www.gnu.org/licenses/lgpl.html *
* Contributors:
* Jeff Martin - initial API and implementation
******************************************************************************/
package cuchaz.enigma.mapping;
import com.google.common.base.Preconditions;
import cuchaz.enigma.utils.Utils;
public class MethodEntry implements Entry {
protected final ClassEntry classEntry;
protected final String name;
protected final MethodDescriptor descriptor;
public MethodEntry(ClassEntry classEntry, String name, MethodDescriptor descriptor) {
Preconditions.checkNotNull(classEntry, "Class cannot be null");
Preconditions.checkNotNull(name, "Method name cannot be null");
Preconditions.checkNotNull(descriptor, "Method descriptor cannot be null");
this.classEntry = classEntry;
this.name = name;
this.descriptor = descriptor;
}
@Override
public ClassEntry getOwnerClassEntry() {
return this.classEntry;
}
@Override
public String getName() {
return this.name;
}
public MethodDescriptor getDesc() {
return this.descriptor;
}
public boolean isConstructor() {
return name.equals("