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

com.jd.httpservice.agent.ArgDefEntry Maven / Gradle / Ivy

There is a newer version: 2.1.4.RELEASE
Show newest version
package com.jd.httpservice.agent;

class ArgDefEntry {
	private int index;
	
	private Class argType;

	private TDef definition;

	public int getIndex() {
		return index;
	}

	public Class getArgType() {
		return argType;
	}
	
	public TDef getDefinition() {
		return definition;
	}

	public ArgDefEntry(int index, Class argType, TDef definition) {
		this.index = index;
		this.argType = argType;
		this.definition = definition;
	}


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy