Skip to content

Commit a2afe70

Browse files
committed
Correct @SInCE tags for methods added by CLI-271
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/cli/trunk@1788928 13f79535-47bb-0310-9956-ffa450edef68
1 parent 1f58d8d commit a2afe70

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

src/main/java/org/apache/commons/cli/CommandLine.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ protected CommandLine()
6161
*
6262
* @param opt the option to check
6363
* @return true if set, false if not
64-
* @since 1.4
64+
* @since 1.5
6565
*/
6666
public boolean hasOption(Option opt)
6767
{
@@ -118,7 +118,7 @@ public Object getOptionObject(String opt)
118118
* @return the value parsed into a particular object
119119
* @throws ParseException if there are problems turning the option value into the desired type
120120
* @see PatternOptionBuilder
121-
* @since 1.4
121+
* @since 1.5
122122
*/
123123
public Object getParsedOptionValue(Option option) throws ParseException
124124
{
@@ -155,7 +155,7 @@ public Object getParsedOptionValue(String opt) throws ParseException
155155
* @return the value parsed into a particular object
156156
* @throws ParseException if there are problems turning the option value into the desired type
157157
* @see PatternOptionBuilder
158-
* @since 1.2
158+
* @since 1.5
159159
*/
160160
public Object getParsedOptionValue(char opt) throws ParseException
161161
{
@@ -180,7 +180,7 @@ public Object getOptionObject(char opt)
180180
* @param option the name of the option
181181
* @return Value of the argument if option is set, and has an argument,
182182
* otherwise null.
183-
* @since 1.4
183+
* @since 1.5
184184
*/
185185
public String getOptionValue(Option option)
186186
{
@@ -222,7 +222,7 @@ public String getOptionValue(char opt)
222222
* @param option string name of the option
223223
* @return Values of the argument if option is set, and has an argument,
224224
* otherwise null.
225-
* @since 1.4
225+
* @since 1.5
226226
*/
227227
public String[] getOptionValues(Option option)
228228
{
@@ -296,7 +296,7 @@ public String[] getOptionValues(char opt)
296296
* is not specified
297297
* @return Value of the argument if option is set, and has an argument,
298298
* otherwise <code>defaultValue</code>.
299-
* @since 1.4
299+
* @since 1.5
300300
*/
301301
public String getOptionValue(Option option, String defaultValue)
302302
{
@@ -343,7 +343,7 @@ public String getOptionValue(char opt, String defaultValue)
343343
* @param option name of the option
344344
* @return The Properties mapped by the option, never <tt>null</tt>
345345
* even if the option doesn't exists
346-
* @since 1.4
346+
* @since 1.5
347347
*/
348348
public Properties getOptionProperties(Option option)
349349
{

0 commit comments

Comments
 (0)