diff options
author | Tor Norbye <tnorbye@google.com> | 2011-12-05 18:02:53 -0800 |
---|---|---|
committer | Tor Norbye <tnorbye@google.com> | 2011-12-05 20:56:05 -0800 |
commit | 3db9393ba06bbf70fa7b4a6db1ef60396979a1d4 (patch) | |
tree | 5608ff10af365e84483f3cdb6477b3973e3de512 /eclipse/plugins/com.android.ide.eclipse.adt | |
parent | faab5914e7cc5e7f4676202ba589bf08c5ae0e42 (diff) | |
download | sdk-3db9393ba06bbf70fa7b4a6db1ef60396979a1d4.zip sdk-3db9393ba06bbf70fa7b4a6db1ef60396979a1d4.tar.gz sdk-3db9393ba06bbf70fa7b4a6db1ef60396979a1d4.tar.bz2 |
Add the Guava library to the tools
This changeset adds the Guava library to ADT and lint. (It is also a
prerequisite for the Lombok AST library which is added by a later CL.)
This changeset also uses the library in a few simple ways: It replaces
some custom I/O and collections code with calls into the equivalent
Guava methods, and it also adds the @Beta annotation on the various
"API" classes which are not yet stable.
Change-Id: I2f50febfa075c32818404e888578a2e1e447d408
Diffstat (limited to 'eclipse/plugins/com.android.ide.eclipse.adt')
-rw-r--r-- | eclipse/plugins/com.android.ide.eclipse.adt/.classpath | 1 | ||||
-rw-r--r-- | eclipse/plugins/com.android.ide.eclipse.adt/META-INF/MANIFEST.MF | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/eclipse/plugins/com.android.ide.eclipse.adt/.classpath b/eclipse/plugins/com.android.ide.eclipse.adt/.classpath index 7493662..55eb303 100644 --- a/eclipse/plugins/com.android.ide.eclipse.adt/.classpath +++ b/eclipse/plugins/com.android.ide.eclipse.adt/.classpath @@ -26,5 +26,6 @@ <classpathentry combineaccessrules="false" kind="src" path="/ddmuilib"/> <classpathentry kind="var" path="ANDROID_SRC/prebuilts/tools/common/asm-tools/asm-4.0.jar" sourcepath="/ANDROID_SRC/prebuilts/tools/common/asm-tools/src.zip"/> <classpathentry kind="var" path="ANDROID_SRC/prebuilts/tools/common/asm-tools/asm-tree-4.0.jar" sourcepath="/ANDROID_SRC/prebuilts/tools/common/asm-tools/src.zip"/> + <classpathentry kind="var" path="ANDROID_SRC/prebuilts/tools/common/guava-tools/guava-10.0.1.jar" sourcepath="/ANDROID_SRC/prebuilts/tools/common/guava-tools/src.zip"/> <classpathentry kind="output" path="bin"/> </classpath> diff --git a/eclipse/plugins/com.android.ide.eclipse.adt/META-INF/MANIFEST.MF b/eclipse/plugins/com.android.ide.eclipse.adt/META-INF/MANIFEST.MF index 58111cc..b0d1219 100644 --- a/eclipse/plugins/com.android.ide.eclipse.adt/META-INF/MANIFEST.MF +++ b/eclipse/plugins/com.android.ide.eclipse.adt/META-INF/MANIFEST.MF @@ -24,6 +24,7 @@ Bundle-ClassPath: ., libs/httpclient-4.1.1.jar, libs/asm-4.0.jar, libs/asm-tree-4.0.jar, + libs/guava-10.0.1.jar, libs/commons-logging-1.1.1.jar, libs/commons-codec-1.4.jar Bundle-Activator: com.android.ide.eclipse.adt.AdtPlugin |