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

com.cookingfox.lapasse.compiler.command.AbstractHandleCommand Maven / Gradle / Ivy

There is a newer version: 0.5.6
Show newest version
package com.cookingfox.lapasse.compiler.command;

import com.cookingfox.lapasse.annotation.HandleCommand;
import com.cookingfox.lapasse.compiler.base.AbstractHandleAnnotation;

import javax.lang.model.element.Element;

/**
 * Base class for {@link HandleCommand} annotation processing.
 */
abstract class AbstractHandleCommand extends AbstractHandleAnnotation {

    protected static final String ANNOTATION = HandleCommand.class.getSimpleName();

    public AbstractHandleCommand(Element element) {
        super(element);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy