blob: 22adfc437797c785b5ed082f886ea2063a75fef1 [file] [log] [blame]
package com.beust.jcommander;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
/**
* @author Cedric Beust <cedric@refresh.io>
* @since 02 12, 2017
*/
@Retention(java.lang.annotation.RetentionPolicy.RUNTIME)
@Target({ FIELD, METHOD })
public @interface SubParameter {
int order() default -1;
}