aboutsummaryrefslogtreecommitdiffstats
path: root/eclipse/plugins/com.android.ide.eclipse.adt.overlay
Commit message (Collapse)AuthorAgeFilesLines
* Update master version from 21.0.0 to 22.0.0Tor Norbye2012-11-261-1/+1
| | | | Change-Id: I3cff176281b4949f814023f0c7ecda897bc1354b
* Update compiler flags.Tor Norbye2012-10-261-2/+2
| | | | | | | | | | Turns off the ability to use @SuppressWarnings with optional errors is available, but off by default (see Eclipse issue 392875). This turns that off, makes missing enums in switch statements a warning, and synchronizes the settings file to all projects (except tests.) Change-Id: Iad7060523b6ee2cbbca97e0a6ffedb264b185222
* ADT 20.0.0 => 21.0.0 devTor Norbye2012-07-301-1/+1
| | | | Change-Id: Idde24b6b893d1029d48ba32766110a6a3cdf73c6
* Fix warningsTor Norbye2012-06-011-0/+5
| | | | | | | | | | | | | | | | | First, update our various project-specific Eclipse compiler settings configuration files to include the new Eclipse 4 flags. Second, turn off the "Unchecked conversion from non-annotated type to @NonNull" warnings; there are hundreds or thousands of these, and there isn't much we can do about them when they're coming from platform and library APIs. Third, make the lint projects warning-clean again by addressing various warnings Eclipse found (such as some unclosed resources and some null handling issues; yesterday's null annotation fixes only addressed errors, not warnings.) Change-Id: If75f7401a1cbeef1bf58b47ccaa9ad17bede7f91
* Move tools to r20Xavier Ducrohet2012-04-131-1/+1
| | | | Change-Id: I3877a7418da193cbe3759f25daafa3309bb8c05a
* Add JDK 6 dependency for the ADT pluginsTor Norbye2012-04-091-0/+1
| | | | Change-Id: I8335bf7d72af4184d505826dc1024a3dde3b67b6
* Rename the eclipse projects to group them together.Xavier Ducrohet2012-04-051-1/+1
| | | | Change-Id: Ia7ceed6297048779b9d591a518c2ae3c8cbfe60c
* Move tools and ADT to 19.Xavier Ducrohet2012-03-291-1/+1
| | | | Change-Id: I3906416a7b5a4bf7b7e2f86ee3155c22d93a3c2b
* Move the tools/ADT to r17Xavier Ducrohet2012-01-271-1/+1
| | | | Change-Id: I4989ce98d4c6a600ca075ee919e5a0e1a40a4497
* Add @NonNull annotation and configure Eclipse settingsTor Norbye2011-12-221-1/+13
| | | | | | | | | | | | | | This changeset adds a new @NonNull annotation, to match our existing @Nullable annotation, and it adds configuration settings for Eclipse 3.8 / Eclipse 4.2 which configures the new null analysis there to use our own annotations. Note that the annotations only have source retention so there is no extra size or class-loading overhead. (To use findbugs you'll need to temporarily change retention to class-level.) In upcoming CL's I'll use these annotations to clarify the Lint API and other APIs. Change-Id: I99096d8b8a7e25ef002624d592da7700195a5872
* Update SDK codebase to JDK 6Tor Norbye2011-12-211-1/+18
| | | | | | | | | | | | | | | | | | | | | This changeset makes the SDK codebase compile with source=1.6 (which means it also requires JDK 6). This means that methods implementing an interface requires @Override's. It also means we can start using APIs like the ArrayDeque class and methods like String#isEmpty(). This changeset looks big but the change is trivial: it's basically adding @Override in all the places that need it, along with some other automatic Eclipse cleanup in certain files (such as reordering imports where they were incorrectly ordered (because older versions of Eclipse didn't always handle inner classes right)), as well as cleaning up trailing whitespace and removing some $NON-NLS-1$ markers on lines where there aren't any string literals anymore. This changeset also sets the source and target JDK level to 6 in the Eclipse compiler .settings file, and synchronizes this file to all the other Eclipse SDK projects. Change-Id: I6a9585aa44c3dee9a5c00739ab22fbdbcb9f8275
* Move tools and adt to 16Xavier Ducrohet2011-10-281-1/+1
| | | | Change-Id: I79ae1bff5086146cc60b4496f4b0464ffd642651
* The overlay plugin has no src folder.Xavier Ducrohet2011-10-062-4/+1
| | | | Change-Id: I48cc8c3e707d63a11320d84b84e62c2a60f28233
* Fix XML formatting from outside the editor (Source > Format)Tor Norbye2011-10-039-0/+368
This changeset fixes this issue: 20450: Source->Format for XML files in Project Explorer in 14-preview applies old XML rules instead of new Android-aware ones Basically, the Eclipse XML support does not consult the StructuredTextViewerConfigurationXML configuration when formatting files. To work around this, this changeset overrides the format processor defined for XML files and redirects to the ADT custom formatter when the option to use a custom formatter is set. Unfortunately, setting the formatProcessor in the ADT plugin does not work, because it turns out that the WTP code to process layer registrations processes plugins in alphabetical order of plugin names (rather than say plugin dependency order), and as a result, the WTP registration is processed later than the ADT one (because org.eclipse > com.android) and it clobbers our registration. To work around this, this changeset adds a *new* plugin, an overlay for ADT which is named "overlay.com.android.eclipse.(etc)" which sorts alphabetically later than org.eclipse. The plugin is basically empty (it just provides a registration of the ADT format processor), and it is registered as just a part of the ADT plugin so it should not be exposed to users directly. Change-Id: I2af2bc1e61e758c36243e4ac7236f676266cc665