diff options
author | Jean-Baptiste Queru <jbq@google.com> | 2011-04-13 11:49:19 -0700 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2011-04-13 11:49:19 -0700 |
commit | 100f99d625909fd17a722a0ed0148549afd55cf8 (patch) | |
tree | 8ff46ca94161328683722aad9718dab20487a1f2 | |
parent | 144058df70ad9a13f3897d3734f55a1517b9d7f7 (diff) | |
parent | 28fc4830fdc68db134783955cc9f54f32d35b0fd (diff) | |
download | platform_external_jsr305-100f99d625909fd17a722a0ed0148549afd55cf8.tar.gz platform_external_jsr305-100f99d625909fd17a722a0ed0148549afd55cf8.tar.bz2 platform_external_jsr305-100f99d625909fd17a722a0ed0148549afd55cf8.zip |
am 28fc4830: Merge "Cleanup leftover merge conflict"android-sdk-adt_r16.0.1android-sdk-4.0.3_r1android-sdk-4.0.3-tools_r1android-cts-verifier-4.0_r1android-cts-verifier-4.0.3_r1android-cts-4.0_r1android-cts-4.0.3_r2android-cts-4.0.3_r1android-4.0.4_r2.1android-4.0.4_r2android-4.0.4_r1.2android-4.0.4_r1.1android-4.0.4_r1android-4.0.3_r1.1android-4.0.3_r1android-4.0.2_r1android-4.0.1_r1.2android-4.0.1_r1.1android-4.0.1_r1ics-mr1-releaseics-mr1ics-mr0-releaseics-mr0ics-factoryrom-2-release
* commit '28fc4830fdc68db134783955cc9f54f32d35b0fd':
Cleanup leftover merge conflict
-rw-r--r-- | javadoc/javax/annotation/meta/Exclusive.html | 7 | ||||
-rw-r--r-- | javadoc/javax/annotation/meta/Exhaustive.html | 8 |
2 files changed, 0 insertions, 15 deletions
diff --git a/javadoc/javax/annotation/meta/Exclusive.html b/javadoc/javax/annotation/meta/Exclusive.html index 042dc7e..653d25b 100644 --- a/javadoc/javax/annotation/meta/Exclusive.html +++ b/javadoc/javax/annotation/meta/Exclusive.html @@ -101,13 +101,6 @@ This annotation can be applied to the value() element of an annotation that For example, the following defines a type qualifier such that if you know a value is @Foo(1), then the value cannot be @Foo(2) or {@Foo(3). -<<<<<<< .mine - For example, the following defines a type qualifier such that if you know - a value is &#064;Foo(1), then the value cannot be &#064;Foo(2) - or {&#064;Foo(3). - -======= ->>>>>>> .r47 <code> @TypeQualifier @interface Foo { @Exclusive int value(); diff --git a/javadoc/javax/annotation/meta/Exhaustive.html b/javadoc/javax/annotation/meta/Exhaustive.html index 1cdf1b4..e0feb16 100644 --- a/javadoc/javax/annotation/meta/Exhaustive.html +++ b/javadoc/javax/annotation/meta/Exhaustive.html @@ -102,20 +102,12 @@ This annotation can be applied to the value() element of an annotation that Applications of the type qualifier with different values are exclusive, and the enumeration is an exhaustive list of the possible values. -<<<<<<< .mine - For example, the following defines a type qualifier such that if you know - a value is neither &#064;Foo(Color.Red) or &#064;Foo(Color.Blue), then the value must be - &#064;Foo(Color.Green). And if you know it is &#064;Foo(Color.Green), you know it cannot - be &#064;Foo(Color.Red) or &#064;Foo(Color.Blue) - -======= For example, the following defines a type qualifier such that if you know a value is neither @Foo(Color.Red) or @Foo(Color.Blue), then the value must be @Foo(Color.Green). And if you know it is @Foo(Color.Green), you know it cannot be @Foo(Color.Red) or @Foo(Color.Blue) ->>>>>>> .r47 <code> @TypeQualifier @interface Foo { enum Color {RED, BLUE, GREEN}; |