File tree 1 file changed +9
-5
lines changed
src/main/java/io/appium/java_client/android
1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change 10
10
11
11
public interface HasAndroidDeviceDetails extends ExecutesMethod {
12
12
13
- /*
14
- Retrieve the display density of the Android device.
13
+ /**
14
+ Retrieve the display density of the Android device.
15
+
16
+ @return The density value in dpi
15
17
*/
16
18
default Long getDisplayDensity () {
17
19
return CommandExecutionHelper .execute (this , getDisplayDensityCommand ());
18
20
}
19
21
20
- /*
21
- Retrieve visibility and bounds information of the status and navigation bars.
22
+ /**
23
+ Retrieve visibility and bounds information of the status and navigation bars.
24
+
25
+ @return The map where keys are bar types and values are mappings of bar properties.
22
26
*/
23
- default Map <String , String > getSystemBars () {
27
+ default Map <String , Map < String , Object > > getSystemBars () {
24
28
return CommandExecutionHelper .execute (this , getSystemBarsCommand ());
25
29
}
26
30
You can’t perform that action at this time.
0 commit comments