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

com.kicksolutions.swagger.plantuml.vo.MethodDefinitions Maven / Gradle / Ivy

The newest version!
package com.kicksolutions.swagger.plantuml.vo;

/**
 * 
 * @author MSANTOSH
 *
 */
public class MethodDefinitions {
	
	private String returnType;
	private String methodDefinition;
	
	public MethodDefinitions(String returnType, String methodDefinition) {
		super();
		this.returnType = returnType;
		this.methodDefinition = methodDefinition;
	}

	public MethodDefinitions() {
		super();
	}

	public String getReturnType() {
		return returnType;
	}

	public void setReturnType(String returnType) {
		this.returnType = returnType;
	}

	public String getMethodDefinition() {
		return methodDefinition;
	}

	public void setMethodDefinition(String methodDefinition) {
		this.methodDefinition = methodDefinition;
	}

	@Override
	public String toString() {
		return "MethodDefinitions [returnType=" + returnType + ", methodDefinition=" + methodDefinition + "]";
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy