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

com.navisarv.mop.treevisitorcontext.MethodTreeVistorContext Maven / Gradle / Ivy

The newest version!
package com.navisarv.mop.treevisitorcontext;

import com.sun.source.tree.MethodTree;

public class MethodTreeVistorContext {
	
	private String methodName;
	private MethodTree methodTree;
	
	public String getMethodName() {
		return methodName;
	}

	public MethodTreeVistorContext(String methodName) {
		this.methodName = methodName;
	}

	public MethodTree getMethodTree() {
		return methodTree;
	}

	public void setMethodTree(MethodTree methodTree) {
		this.methodTree = methodTree;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy