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

com.artemis.meta.MethodDescriptor Maven / Gradle / Ivy

There is a newer version: 2.3.0
Show newest version
package com.artemis.meta;

public class MethodDescriptor {
	public final int access;
	public final String name;
	public final String desc;
	public final String signature;
	public final String[] exceptions;

	public MethodDescriptor(int access, String name, String desc, String signature, String[] exceptions) {
		this.access = access;
		this.name = name;
		this.desc = desc;
		this.signature = signature;
		this.exceptions = exceptions;
	}

	public MethodDescriptor(String name, String desc) {
		this(0, name, desc, null, null);
	}

	@Override
	public String toString() {
		return "MethodDescriptor[" +
			", name='" + name + '\'' +
			", desc='" + desc + '\'' +
			", signature='" + signature + '\'' +
			']';
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy