Skip to content

Commit 9f2da75

Browse files
committed
Format with Google style
1 parent 4f9e1ce commit 9f2da75

35 files changed

+1065
-1232
lines changed

src/main/java/org/cyclopsgroup/jcli/ArgumentProcessorFactory.java

+24-24
Original file line numberDiff line numberDiff line change
@@ -10,30 +10,30 @@
1010
*
1111
* @author <a href="mailto:[email protected]">Jiaqi Guo</a>
1212
*/
13-
public abstract class ArgumentProcessorFactory
14-
{
15-
/**
16-
* @return Instance of ArgumentProcessorFactory. The implementation is determined by {@link ServiceLoader}
17-
*/
18-
static ArgumentProcessorFactory getInstance()
19-
{
20-
Iterator<ArgumentProcessorFactory> factories = ServiceLoader.load( ArgumentProcessorFactory.class ).iterator();
21-
if ( factories.hasNext() )
22-
{
23-
return factories.next();
24-
}
25-
throw new AssertionError( "Can't find an implementation of " + ArgumentProcessorFactory.class.getName()
26-
+ " from service loader" );
13+
public abstract class ArgumentProcessorFactory {
14+
/**
15+
* @return Instance of ArgumentProcessorFactory. The implementation is determined by
16+
* {@link ServiceLoader}
17+
*/
18+
static ArgumentProcessorFactory getInstance() {
19+
Iterator<ArgumentProcessorFactory> factories =
20+
ServiceLoader.load(ArgumentProcessorFactory.class).iterator();
21+
if (factories.hasNext()) {
22+
return factories.next();
2723
}
24+
throw new AssertionError("Can't find an implementation of "
25+
+ ArgumentProcessorFactory.class.getName() + " from service loader");
26+
}
2827

29-
/**
30-
* Create new instance of {@link ArgumentProcessor}. The implementation of factory needs to implement this method to
31-
* create customized argument processor
32-
*
33-
* @param <T> Type of bean to process
34-
* @param beanType Type of bean to process
35-
* @param parser Command line parser that is aware of command line syntax
36-
* @return Instance of argument processor implementation
37-
*/
38-
protected abstract <T> ArgumentProcessor<T> newProcessor( Class<? extends T> beanType, CommandLineParser parser );
28+
/**
29+
* Create new instance of {@link ArgumentProcessor}. The implementation of factory needs to
30+
* implement this method to create customized argument processor
31+
*
32+
* @param <T> Type of bean to process
33+
* @param beanType Type of bean to process
34+
* @param parser Command line parser that is aware of command line syntax
35+
* @return Instance of argument processor implementation
36+
*/
37+
protected abstract <T> ArgumentProcessor<T> newProcessor(Class<? extends T> beanType,
38+
CommandLineParser parser);
3939
}

src/main/java/org/cyclopsgroup/jcli/AutoCompletable.java

+16-17
Original file line numberDiff line numberDiff line change
@@ -7,22 +7,21 @@
77
*
88
* @author <a href="mailto:[email protected]">Jiaqi Guo</a>
99
*/
10-
public interface AutoCompletable
11-
{
12-
/**
13-
* Suggest candidates for an option with given partial input
14-
*
15-
* @param optionName Name of option
16-
* @param partialOption Given partial input
17-
* @return List of candidates or NULL if it can't figure out
18-
*/
19-
List<String> suggestOption( String optionName, String partialOption );
10+
public interface AutoCompletable {
11+
/**
12+
* Suggest candidates for an option with given partial input
13+
*
14+
* @param optionName Name of option
15+
* @param partialOption Given partial input
16+
* @return List of candidates or NULL if it can't figure out
17+
*/
18+
List<String> suggestOption(String optionName, String partialOption);
2019

21-
/**
22-
* Suggest candidates for argument with given partial input
23-
*
24-
* @param partialArgument Partial argument input
25-
* @return List of candidates or NULL if it can't figure out
26-
*/
27-
List<String> suggestArgument( String partialArgument );
20+
/**
21+
* Suggest candidates for argument with given partial input
22+
*
23+
* @param partialArgument Partial argument input
24+
* @return List of candidates or NULL if it can't figure out
25+
*/
26+
List<String> suggestArgument(String partialArgument);
2827
}

src/main/java/org/cyclopsgroup/jcli/ValidationResult.java

+70-87
Original file line numberDiff line numberDiff line change
@@ -9,111 +9,94 @@
99
/**
1010
* Argument validation result coming from {@link ArgumentProcessor#validate(String[])}
1111
*/
12-
public final class ValidationResult
13-
{
14-
/**
15-
* A violation indicating required argument is missing
16-
*/
17-
public static final class ArgumentMissing
18-
extends Violation
19-
{
20-
}
21-
22-
/**
23-
* Type of violation where a required option is missing
24-
*/
25-
public static final class OptionMissing
26-
extends Violation
27-
{
28-
private final String optionName;
12+
public final class ValidationResult {
13+
/**
14+
* A violation indicating required argument is missing
15+
*/
16+
public static final class ArgumentMissing extends Violation {
17+
}
2918

30-
/**
31-
* @param optionName Name of missing option
32-
*/
33-
public OptionMissing( String optionName )
34-
{
35-
Validate.notNull( optionName, "Name of missing option can't be NULL" );
36-
this.optionName = optionName;
37-
}
38-
39-
/**
40-
* Get name of missing option
41-
*
42-
* @return optionName Name of option missed
43-
*/
44-
public String getOptionName()
45-
{
46-
return optionName;
47-
}
48-
}
19+
/**
20+
* Type of violation where a required option is missing
21+
*/
22+
public static final class OptionMissing extends Violation {
23+
private final String optionName;
4924

5025
/**
51-
* Violation where an unexpected option value is found
26+
* @param optionName Name of missing option
5227
*/
53-
public static final class UnexpectedOption
54-
extends Violation
55-
{
56-
private final String optionName;
57-
58-
/**
59-
* @param optionName Name of unexpected option
60-
*/
61-
public UnexpectedOption( String optionName )
62-
{
63-
Validate.notNull( optionName, "Name of missing option can't be NULL" );
64-
this.optionName = optionName;
65-
}
66-
67-
/**
68-
* Get name of missing option
69-
*
70-
* @return optionName Name of option missed
71-
*/
72-
public String getOptionName()
73-
{
74-
return optionName;
75-
}
28+
public OptionMissing(String optionName) {
29+
Validate.notNull(optionName, "Name of missing option can't be NULL");
30+
this.optionName = optionName;
7631
}
7732

7833
/**
79-
* A validation violation
34+
* Get name of missing option
35+
*
36+
* @return optionName Name of option missed
8037
*/
81-
public static abstract class Violation
82-
{
83-
Violation()
84-
{
85-
}
38+
public String getOptionName() {
39+
return optionName;
8640
}
41+
}
8742

88-
private final List<Violation> violations = new ArrayList<Violation>();
43+
/**
44+
* Violation where an unexpected option value is found
45+
*/
46+
public static final class UnexpectedOption extends Violation {
47+
private final String optionName;
8948

9049
/**
91-
* Add a new violation to validation result
92-
*
93-
* @param <T> Type of validation violation
94-
* @param violation Violation
50+
* @param optionName Name of unexpected option
9551
*/
96-
public <T extends Violation> void addViolation( T violation )
97-
{
98-
violations.add( violation );
52+
public UnexpectedOption(String optionName) {
53+
Validate.notNull(optionName, "Name of missing option can't be NULL");
54+
this.optionName = optionName;
9955
}
10056

10157
/**
102-
* Get list of violations in result
58+
* Get name of missing option
10359
*
104-
* @return List of violations in result
60+
* @return optionName Name of option missed
10561
*/
106-
public List<Violation> getViolations()
107-
{
108-
return Collections.unmodifiableList( violations );
109-
62+
public String getOptionName() {
63+
return optionName;
11064
}
65+
}
11166

112-
/**
113-
* @return True if there is not violation
114-
*/
115-
public boolean isValid()
116-
{
117-
return violations.isEmpty();
118-
}
67+
/**
68+
* A validation violation
69+
*/
70+
public static abstract class Violation {
71+
Violation() {}
72+
}
73+
74+
private final List<Violation> violations = new ArrayList<Violation>();
75+
76+
/**
77+
* Add a new violation to validation result
78+
*
79+
* @param <T> Type of validation violation
80+
* @param violation Violation
81+
*/
82+
public <T extends Violation> void addViolation(T violation) {
83+
violations.add(violation);
84+
}
85+
86+
/**
87+
* Get list of violations in result
88+
*
89+
* @return List of violations in result
90+
*/
91+
public List<Violation> getViolations() {
92+
return Collections.unmodifiableList(violations);
93+
94+
}
95+
96+
/**
97+
* @return True if there is not violation
98+
*/
99+
public boolean isValid() {
100+
return violations.isEmpty();
101+
}
119102
}

src/main/java/org/cyclopsgroup/jcli/annotation/Argument.java

+13-14
Original file line numberDiff line numberDiff line change
@@ -7,23 +7,22 @@
77
import java.lang.annotation.Target;
88

99
/**
10-
* This annotation marks a property as non-option argument or arguments. Type of this property can be array, List or
11-
* single value.
10+
* This annotation marks a property as non-option argument or arguments. Type of this property can
11+
* be array, List or single value.
1212
*
1313
* @author <a href="mailto:[email protected]">Jiaqi Guo</a>
1414
*/
1515
@Documented
16-
@Target( { ElementType.METHOD, ElementType.FIELD } )
17-
@Retention( RetentionPolicy.RUNTIME )
18-
public @interface Argument
19-
{
20-
/**
21-
* @return String description of argument which will be displayed in usage
22-
*/
23-
String description() default "";
16+
@Target({ElementType.METHOD, ElementType.FIELD})
17+
@Retention(RetentionPolicy.RUNTIME)
18+
public @interface Argument {
19+
/**
20+
* @return String description of argument which will be displayed in usage
21+
*/
22+
String description() default "";
2423

25-
/**
26-
* @return Name of argument displayed in usage
27-
*/
28-
String displayName() default "arg";
24+
/**
25+
* @return Name of argument displayed in usage
26+
*/
27+
String displayName() default "arg";
2928
}

src/main/java/org/cyclopsgroup/jcli/annotation/Cli.java

+19-20
Original file line numberDiff line numberDiff line change
@@ -12,27 +12,26 @@
1212
* @author <a href="mailto:[email protected]">Jiaqi Guo</a>
1313
*/
1414
@Documented
15-
@Target( ElementType.TYPE )
16-
@Retention( RetentionPolicy.RUNTIME )
17-
public @interface Cli
18-
{
19-
/**
20-
* @return String description of command
21-
*/
22-
String description() default "";
15+
@Target(ElementType.TYPE)
16+
@Retention(RetentionPolicy.RUNTIME)
17+
public @interface Cli {
18+
/**
19+
* @return String description of command
20+
*/
21+
String description() default "";
2322

24-
/**
25-
* @return Name of command
26-
*/
27-
String name();
23+
/**
24+
* @return Name of command
25+
*/
26+
String name();
2827

29-
/**
30-
* @return Note displayed as footer
31-
*/
32-
String note() default "";
28+
/**
29+
* @return Note displayed as footer
30+
*/
31+
String note() default "";
3332

34-
/**
35-
* @return True if unexpected option or argument is expected to cause error
36-
*/
37-
boolean restrict() default true;
33+
/**
34+
* @return True if unexpected option or argument is expected to cause error
35+
*/
36+
boolean restrict() default true;
3837
}

0 commit comments

Comments
 (0)