docs: Removed all instances of "i.e." in IntentFilter parameter descriptions. am: e20b3d78e3

am: e0360165d3

Change-Id: I02e413c1dbf2cfe684a0b73aafd7075b4db4c090
This commit is contained in:
Kevin Hufnagle
2016-09-27 00:02:16 +00:00
committed by android-build-merger

View File

@@ -124,7 +124,7 @@ import java.util.Set;
* <em>Note that authority matching here is <b>case sensitive</b>, unlike * <em>Note that authority matching here is <b>case sensitive</b>, unlike
* formal RFC host names!</em> You should thus always use lower case letters * formal RFC host names!</em> You should thus always use lower case letters
* for your authority. * for your authority.
* *
* <p><strong>Data Path</strong> matches if any of the given values match the * <p><strong>Data Path</strong> matches if any of the given values match the
* Intent's data path <em>and</em> both a scheme and authority in the filter * Intent's data path <em>and</em> both a scheme and authority in the filter
* has matched against the Intent, <em>or</em> no paths were supplied in the * has matched against the Intent, <em>or</em> no paths were supplied in the
@@ -359,8 +359,8 @@ public class IntentFilter implements Parcelable {
* the {@link MalformedMimeTypeException} exception that the constructor * the {@link MalformedMimeTypeException} exception that the constructor
* can call and turns it into a runtime exception. * can call and turns it into a runtime exception.
* *
* @param action The action to match, i.e. Intent.ACTION_VIEW. * @param action The action to match, such as Intent.ACTION_VIEW.
* @param dataType The type to match, i.e. "vnd.android.cursor.dir/person". * @param dataType The type to match, such as "vnd.android.cursor.dir/person".
* *
* @return A new IntentFilter for the given action and type. * @return A new IntentFilter for the given action and type.
* *
@@ -387,7 +387,7 @@ public class IntentFilter implements Parcelable {
* no data characteristics are subsequently specified, then the * no data characteristics are subsequently specified, then the
* filter will only match intents that contain no data. * filter will only match intents that contain no data.
* *
* @param action The action to match, i.e. Intent.ACTION_MAIN. * @param action The action to match, such as Intent.ACTION_MAIN.
*/ */
public IntentFilter(String action) { public IntentFilter(String action) {
mPriority = 0; mPriority = 0;
@@ -407,8 +407,8 @@ public class IntentFilter implements Parcelable {
* <p>Throws {@link MalformedMimeTypeException} if the given MIME type is * <p>Throws {@link MalformedMimeTypeException} if the given MIME type is
* not syntactically correct. * not syntactically correct.
* *
* @param action The action to match, i.e. Intent.ACTION_VIEW. * @param action The action to match, such as Intent.ACTION_VIEW.
* @param dataType The type to match, i.e. "vnd.android.cursor.dir/person". * @param dataType The type to match, such as "vnd.android.cursor.dir/person".
* *
*/ */
public IntentFilter(String action, String dataType) public IntentFilter(String action, String dataType)
@@ -652,7 +652,7 @@ public class IntentFilter implements Parcelable {
* in the filter, then an Intent's action must be one of those values for * in the filter, then an Intent's action must be one of those values for
* it to match. If no actions are included, the Intent action is ignored. * it to match. If no actions are included, the Intent action is ignored.
* *
* @param action Name of the action to match, i.e. Intent.ACTION_VIEW. * @param action Name of the action to match, such as Intent.ACTION_VIEW.
*/ */
public final void addAction(String action) { public final void addAction(String action) {
if (!mActions.contains(action)) { if (!mActions.contains(action)) {
@@ -721,7 +721,7 @@ public class IntentFilter implements Parcelable {
* <p>Throws {@link MalformedMimeTypeException} if the given MIME type is * <p>Throws {@link MalformedMimeTypeException} if the given MIME type is
* not syntactically correct. * not syntactically correct.
* *
* @param type Name of the data type to match, i.e. "vnd.android.cursor.dir/person". * @param type Name of the data type to match, such as "vnd.android.cursor.dir/person".
* *
* @see #matchData * @see #matchData
*/ */
@@ -798,7 +798,7 @@ public class IntentFilter implements Parcelable {
* and any schemes you receive from outside of Android should be * and any schemes you receive from outside of Android should be
* converted to lower case before supplying them here.</em></p> * converted to lower case before supplying them here.</em></p>
* *
* @param scheme Name of the scheme to match, i.e. "http". * @param scheme Name of the scheme to match, such as "http".
* *
* @see #matchData * @see #matchData
*/ */
@@ -909,7 +909,7 @@ public class IntentFilter implements Parcelable {
* Determine whether this AuthorityEntry matches the given data Uri. * Determine whether this AuthorityEntry matches the given data Uri.
* <em>Note that this comparison is case-sensitive, unlike formal * <em>Note that this comparison is case-sensitive, unlike formal
* RFC host names. You thus should always normalize to lower-case.</em> * RFC host names. You thus should always normalize to lower-case.</em>
* *
* @param data The Uri to match. * @param data The Uri to match.
* @return Returns either {@link IntentFilter#NO_MATCH_DATA}, * @return Returns either {@link IntentFilter#NO_MATCH_DATA},
* {@link IntentFilter#MATCH_CATEGORY_PORT}, or * {@link IntentFilter#MATCH_CATEGORY_PORT}, or
@@ -1364,7 +1364,7 @@ public class IntentFilter implements Parcelable {
* filter has no impact on matching unless that category is specified in * filter has no impact on matching unless that category is specified in
* the intent. * the intent.
* *
* @param category Name of category to match, i.e. Intent.CATEGORY_EMBED. * @param category Name of category to match, such as Intent.CATEGORY_EMBED.
*/ */
public final void addCategory(String category) { public final void addCategory(String category) {
if (mCategories == null) mCategories = new ArrayList<String>(); if (mCategories == null) mCategories = new ArrayList<String>();