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

com.orientechnologies.common.console.annotation.ConsoleParameter Maven / Gradle / Ivy

The newest version!
package com.orientechnologies.common.console.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Target(ElementType.PARAMETER)
@Retention(RetentionPolicy.RUNTIME)
public @interface ConsoleParameter {
	String name() default "";

	String description() default "";

	boolean optional() default false;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy