Skip to content

Commit

Permalink
[#536] bugfix: update codegen module
Browse files Browse the repository at this point in the history
  • Loading branch information
remkop committed Apr 6, 2019
1 parent 05e98fd commit ff6bfb0
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1002,6 +1002,7 @@ private TypedMember(ExecutableElement method) {
public boolean isUnmatched() { return isAnnotationPresent(Unmatched.class); }
public boolean isInjectSpec() { return isAnnotationPresent(Spec.class); }
public boolean isMultiValue() { return getTypeInfo().isMultiValue(); }
public boolean isInteractive() { return (isOption() && getAnnotation(Option.class).interactive()) || (isParameter() && getAnnotation(Parameters.class).interactive()); }
public ITypeInfo getTypeInfo() { return typeInfo; }
public CommandLine.Model.IGetter getter() { return getter; }
public CommandLine.Model.ISetter setter() { return setter; }
Expand Down

0 comments on commit ff6bfb0

Please sign in to comment.