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

com.github.gkutiel.flip.plugin.CommandMethod Maven / Gradle / Ivy

There is a newer version: 5-RELEASE
Show newest version
package com.github.gkutiel.flip.plugin;

import java.util.Set;

import javax.lang.model.type.TypeMirror;

import com.github.gkutiel.flip.apt.Command;
import com.github.gkutiel.flip.apt.Path;
import com.github.gkutiel.flip.apt.Response;

public class CommandMethod {

	public final TypeMirror clazz;
	public final boolean isFliplet;
	public final Set filters;
	public final Method method;
	public final Path path;
	public final Command command;
	public final Response response;

	// @formatter:off
	public CommandMethod(
		final TypeMirror clazz, 
		final boolean isFliplet, 
		final Set filters, 
		final Method method, 
		final Path path, 
		final Command command, 
		final Response response
	){
		this.clazz = clazz;
		this.isFliplet = isFliplet;
		this.filters = filters;
		this.method = method;
		this.path = path;
		this.command = command;
		this.response = response;
	}
	//@formatter:on
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy