summaryrefslogtreecommitdiff
path: root/platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/annotations/Polygon.java
diff options
context:
space:
mode:
authorCameron Mace <cameron@mapbox.com>2016-12-01 08:48:25 -0500
committerGitHub <noreply@github.com>2016-12-01 08:48:25 -0500
commitb1068b432ee17c14ea756b7c48be4c955303de95 (patch)
treea08c74f5db007a51581db1e3a3ef09adcac10898 /platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/annotations/Polygon.java
parent5f29c3ba26f84c8aea6f70640c348b32cdf397bf (diff)
downloadqtlocation-mapboxgl-b1068b432ee17c14ea756b7c48be4c955303de95.tar.gz
cherry-picked 7013 into master (#7247)
Diffstat (limited to 'platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/annotations/Polygon.java')
-rw-r--r--platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/annotations/Polygon.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/annotations/Polygon.java b/platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/annotations/Polygon.java
index 78e3a99e96..a06938e3cb 100644
--- a/platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/annotations/Polygon.java
+++ b/platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/annotations/Polygon.java
@@ -19,7 +19,7 @@ public final class Polygon extends MultiPoint {
/**
* Get the color of the fill region of the polygon.
*
- * @return the color of the fill
+ * @return The color of the fill.
*/
public int getFillColor() {
return fillColor;
@@ -28,7 +28,7 @@ public final class Polygon extends MultiPoint {
/**
* Get the color fo the stroke of the polygon.
*
- * @return the color of the stroke
+ * @return The color of the stroke.
*/
public int getStrokeColor() {
return strokeColor;
@@ -37,7 +37,7 @@ public final class Polygon extends MultiPoint {
/**
* Sets the color of the fill region of the polygon.
*
- * @param color - the color in ARGB format
+ * @param color The color in ARGB format.
*/
public void setFillColor(int color) {
fillColor = color;
@@ -47,7 +47,7 @@ public final class Polygon extends MultiPoint {
/**
* Sets the color of the stroke of the polygon.
*
- * @param color - the color in ARGB format
+ * @param color The color in ARGB format.
*/
public void setStrokeColor(int color) {
strokeColor = color;