File tree Expand file tree Collapse file tree 2 files changed +17
-1
lines changed
src/main/java/de/mint/consoleline/service Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ plugins {
55}
66
77group ' de.mint.consoleline'
8- version ' 1.0.8'
8+ version ' 1.0.8-1 '
99
1010java {
1111 toolchain {
Original file line number Diff line number Diff line change @@ -112,6 +112,22 @@ public JlineBuilder setScheduleExecutorService(final ScheduledExecutorService sc
112112 return this ;
113113 }
114114
115+
116+ public JlineBuilder setCommandArgumentNotAvailableFormat (String [] commandArgumentNotAvailableFormat ) {
117+ this .jlineConfiguration .setCommandArgumentNotAvailableFormat (commandArgumentNotAvailableFormat );
118+ return this ;
119+ }
120+
121+ public JlineBuilder setCommandNotAvailableFormat (String [] commandNotAvailableFormat ) {
122+ this .jlineConfiguration .setCommandNotAvailableFormat (commandNotAvailableFormat );
123+ return this ;
124+ }
125+
126+ public JlineBuilder setCommand (final ScheduledExecutorService scheduledExecutorService ){
127+ this .jlineConfiguration .setScheduledExecutorService (scheduledExecutorService );
128+ return this ;
129+ }
130+
115131 public JlineBuilder setPeriod (final long period ) {
116132 this .jlineConfiguration .setPeriod (period );
117133 return this ;
You can’t perform that action at this time.
0 commit comments