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

jedi.annotation.writer.method.CommandFactoryMethodWriter Maven / Gradle / Ivy

There is a newer version: 3.0.5
Show newest version
package jedi.annotation.writer.method;

import jedi.annotation.processor.ProcessorOptions;
import jedi.annotation.processor.model.Annotateable;
import jedi.functional.Command;

public class CommandFactoryMethodWriter extends AbstractBasicFactoryMethodWriter {
	public CommandFactoryMethodWriter(ProcessorOptions options) {
		super(options);
	}

	@Override
	protected Class getOneParameterClosureClass() {
		return Command.class;
	}

	@Override
	protected boolean hasCorrectReturnType(Annotateable method) {
		return true;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy