Skip to content

Commit e3ae02d

Browse files
authored
Java doc updates as per b/190099349 (#3580)
1 parent 6e232d8 commit e3ae02d

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

firebase-dynamic-links/src/main/java/com/google/firebase/dynamiclinks/PendingDynamicLinkData.java

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,12 @@ protected PendingDynamicLinkData(
7171
}
7272

7373
/**
74-
* Return the {@link Bundle} so that 1P dynamic links extensions can access extension data. The
74+
* Returns the {@link Bundle} so that 1P dynamic links extensions can access extension data. The
7575
* data is stored bundle with keys defined by the extension. The bundle is shared with all
7676
* extensions, so the keys should be unique using the package name of the extension to define the
7777
* namespace.
7878
*
79-
* @return A bundle will all extension data.
79+
* @return A bundle with all extensions data.
8080
* @hide
8181
*/
8282
@KeepForSdk
@@ -89,7 +89,7 @@ public Bundle getExtensions() {
8989
}
9090

9191
/**
92-
* Return the link parameter of the dynamic link.
92+
* Returns the link parameter of the Firebase Dynamic Link.
9393
*
9494
* <p>This link will be set as data in the launch Intent, see {@link Intent#setData(Uri)}, which
9595
* will match {@link android.content.IntentFilter} to deep link into the app.
@@ -109,8 +109,8 @@ public Uri getLink() {
109109
}
110110

111111
/**
112-
* Return the {@link Bundle} which contains utm parameters associated with the firebase dynamic
113-
* link.
112+
* Returns the {@link Bundle} which contains utm parameters associated with the Firebase Dynamic
113+
* Link.
114114
*
115115
* @return Bundle of utm parameters associated with firebase dynamic link.
116116
*/
@@ -124,9 +124,9 @@ public Bundle getUtmParameters() {
124124
}
125125

126126
/**
127-
* The minimum app version requested to process the dynamic link that can be compared directly
128-
* with {@link android.content.pm.PackageInfo#versionCode}. If the minimum version code is higher
129-
* than the installed app version code, the app can upgrade using {@link
127+
* Gets the minimum app version requested to process the Firebase Dynamic Link that can be
128+
* compared directly with {@link android.content.pm.PackageInfo#versionCode}. If the minimum
129+
* version code is higher than the installed app version code, the app can upgrade using {@link
130130
* #getUpdateAppIntent(Context)}.
131131
*
132132
* @return minimum version code set on the dynamic link, or 0 if not specified.
@@ -139,8 +139,8 @@ public int getMinimumAppVersion() {
139139
}
140140

141141
/**
142-
* The time that the user clicked on the dynamic link. This can be used to determine the amount of
143-
* time that has passed since the user selected the link until the app is launched.
142+
* Gets the time that the user clicked on the Firebase Dynamic Link. This can be used to determine
143+
* the amount of time that has passed since the user selected the link until the app is launched.
144144
*
145145
* @return The number of milliseconds that have elapsed since January 1, 1970.
146146
*/
@@ -152,7 +152,7 @@ public long getClickTimestamp() {
152152
}
153153

154154
/**
155-
* Provides the redirect url, which is used as the alternative to opening the app. This url may
155+
* Gets the redirect url, which is used as the alternative to opening the app. This url may
156156
* install the app or go to an app specific website.
157157
*
158158
* @return Url that can be used to create an intent to launch an activity.
@@ -168,7 +168,7 @@ public Uri getRedirectUrl() {
168168
}
169169

170170
/**
171-
* Provide an intent to update the app to the version in the Play Store.
171+
* Gets the intent to update the app to the version in the Play Store.
172172
*
173173
* <p>An intent is returned to be used as a parameter to {@link
174174
* android.app.Activity#startActivity(Intent)} to launch the Play Store update flow for the app.

0 commit comments

Comments
 (0)