Skip to content

Commit cb498a3

Browse files
valfirstmykola-mokhnach
authored andcommitted
Checkstyle updates (appium#1170)
1 parent f836114 commit cb498a3

10 files changed

Lines changed: 28 additions & 10 deletions

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ tasks.withType(JacocoReport) {
105105
jacocoTestReport.dependsOn test
106106

107107
checkstyle {
108-
toolVersion = '8.17'
108+
toolVersion = '8.22'
109109
configFile = file("$projectDir/google-style.xml")
110110
showViolations = true
111111
ignoreFailures = false

src/main/java/io/appium/java_client/pagefactory/AndroidFindByAllSet.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,10 @@
1515
@Retention(value = RUNTIME)
1616
public @interface AndroidFindByAllSet {
1717
/**
18+
* An array which builds a sequence of the chained searching for elements or a set of possible locators.
19+
*
1820
* @return an array of {@link AndroidFindAll} which builds a sequence of
19-
* the chained searching for elements or a set of possible locators
21+
* the chained searching for elements or a set of possible locators
2022
*/
2123
AndroidFindAll[] value();
2224
}

src/main/java/io/appium/java_client/pagefactory/AndroidFindByChainSet.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,10 @@
1515
@Retention(value = RUNTIME)
1616
public @interface AndroidFindByChainSet {
1717
/**
18+
* An array of which builds a sequence of the chained searching for elements or a set of possible locators.
19+
*
1820
* @return an array of {@link io.appium.java_client.pagefactory.AndroidFindBys} which builds a sequence of
19-
* the chained searching for elements or a set of possible locators
21+
* the chained searching for elements or a set of possible locators
2022
*/
2123
AndroidFindBys[] value();
2224
}

src/main/java/io/appium/java_client/pagefactory/AndroidFindBySet.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,10 @@
3131
@Retention(value = RUNTIME)
3232
public @interface AndroidFindBySet {
3333
/**
34+
* An array of which builds a sequence of the chained searching for elements or a set of possible locators.
35+
*
3436
* @return an array of {@link io.appium.java_client.pagefactory.AndroidFindBy} which builds a sequence of
35-
* the chained searching for elements or a set of possible locators
37+
* the chained searching for elements or a set of possible locators
3638
*/
3739
AndroidFindBy[] value();
3840
}

src/main/java/io/appium/java_client/pagefactory/WindowsFindByAllSet.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,10 @@
1515
@Retention(value = RUNTIME)
1616
public @interface WindowsFindByAllSet {
1717
/**
18+
* An array of which builds a sequence of the chained searching for elements or a set of possible locators.
19+
*
1820
* @return an array of {@link WindowsFindAll} which builds a sequence of
19-
* the chained searching for elements or a set of possible locators
21+
* the chained searching for elements or a set of possible locators
2022
*/
2123
WindowsFindAll[] value();
2224
}

src/main/java/io/appium/java_client/pagefactory/WindowsFindByChainSet.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,10 @@
1515
@Retention(value = RUNTIME)
1616
public @interface WindowsFindByChainSet {
1717
/**
18+
* An array of which builds a sequence of the chained searching for elements or a set of possible locators.
19+
*
1820
* @return an array of {@link WindowsFindBys} which builds a sequence of
19-
* the chained searching for elements or a set of possible locators
21+
* the chained searching for elements or a set of possible locators
2022
*/
2123
WindowsFindBys[] value();
2224
}

src/main/java/io/appium/java_client/pagefactory/WindowsFindBySet.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,10 @@
3131
@Retention(value = RUNTIME)
3232
public @interface WindowsFindBySet {
3333
/**
34+
* An array ofwhich builds a sequence of the chained searching for elements or a set of possible locators.
35+
*
3436
* @return an array of {@link WindowsFindBy} which builds a sequence of
35-
* the chained searching for elements or a set of possible locators
37+
* the chained searching for elements or a set of possible locators
3638
*/
3739
WindowsFindBy[] value();
3840
}

src/main/java/io/appium/java_client/pagefactory/iOSXCUITFindByAllSet.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,10 @@
1515
@Retention(value = RUNTIME)
1616
public @interface iOSXCUITFindByAllSet {
1717
/**
18+
* An array of which builds a sequence of the chained searching for elements or a set of possible locators.
19+
*
1820
* @return an array of {@link io.appium.java_client.pagefactory.iOSXCUITFindAll} which builds a sequence of
19-
* the chained searching for elements or a set of possible locators
21+
* the chained searching for elements or a set of possible locators
2022
*/
2123
iOSXCUITFindAll[] value();
2224
}

src/main/java/io/appium/java_client/pagefactory/iOSXCUITFindByChainSet.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,10 @@
1515
@Retention(value = RUNTIME)
1616
public @interface iOSXCUITFindByChainSet {
1717
/**
18+
* An array of which builds a sequence of the chained searching for elements or a set of possible locators.
19+
*
1820
* @return an array of {@link io.appium.java_client.pagefactory.iOSXCUITFindBys} which builds a sequence of
19-
* the chained searching for elements or a set of possible locators
21+
* the chained searching for elements or a set of possible locators
2022
*/
2123
iOSXCUITFindBys[] value();
2224
}

src/main/java/io/appium/java_client/pagefactory/iOSXCUITFindBySet.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,10 @@
2626
@Retention(RUNTIME) @Target({FIELD, TYPE})
2727
public @interface iOSXCUITFindBySet {
2828
/**
29+
* An array of which builds a sequence of the chained searching for elements or a set of possible locators.
30+
*
2931
* @return an array of {@link iOSXCUITFindBy} which builds a sequence of
30-
* the chained searching for elements or a set of possible locators
32+
* the chained searching for elements or a set of possible locators
3133
*/
3234
iOSXCUITFindBy[] value();
3335
}

0 commit comments

Comments
 (0)